@evergis/api 3.0.57 → 3.0.60

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.
@@ -773,17 +773,6 @@ export interface ColumnDescriptionDc {
773
773
  /** If sets true, index will be configured. */
774
774
  hasIndex?: boolean;
775
775
  }
776
- /**
777
- * Values combine types.
778
-
779
- Array
780
-
781
- Value
782
- */
783
- export declare enum CombineType {
784
- Array = "Array",
785
- Value = "Value"
786
- }
787
776
  /**
788
777
  * Data contract for SPCore.Connectors.Connectors.Base.Models.Composite.CompositeLayerConfigurationDc.
789
778
  */
@@ -860,12 +849,7 @@ export declare type CompositeSymbolDc = SymbolDc & {
860
849
  /**
861
850
  * Get configuration information.
862
851
  */
863
- export interface ConfigInfo {
864
- /**
865
- * Gets or sets config primary key.
866
- * @format int32
867
- */
868
- id?: number;
852
+ export interface ConfigDc {
869
853
  /** Gets or sets config description. */
870
854
  description?: string;
871
855
  /** Gets or sets config url path. */
@@ -1013,15 +997,6 @@ export declare type CopyTaskParametersDc = FeatureTaskParametersDc & {
1013
997
  attributeMapping?: Record<string, string>;
1014
998
  type?: string;
1015
999
  };
1016
- /**
1017
- * Create configuration data contract.
1018
- */
1019
- export interface CreateConfigDc {
1020
- /** Gets or sets config description. */
1021
- description: string;
1022
- /** Gets or sets config url path. */
1023
- urlPath: string;
1024
- }
1025
1000
  /**
1026
1001
  * Data contract for create new role.
1027
1002
  */
@@ -1072,49 +1047,6 @@ export interface CreateUserDc {
1072
1047
  /** Phone number. */
1073
1048
  phone?: string;
1074
1049
  }
1075
- /**
1076
- * Create value data contract.
1077
- */
1078
- export interface CreateValueDc {
1079
- /** Gets or sets value description. */
1080
- name?: string;
1081
- /**
1082
- * Gets or sets variable id.
1083
- * @format int32
1084
- */
1085
- idVariable: number;
1086
- /** Gets or sets JSON value. */
1087
- value: string;
1088
- /**
1089
- * Gets or sets JSON value.
1090
- * @format int32
1091
- */
1092
- priority: number;
1093
- /** Gets or sets roles. */
1094
- roles?: string[];
1095
- }
1096
- /**
1097
- * Create variable data contract.
1098
- */
1099
- export interface CreateVariableDc {
1100
- /** Gets or sets variable name. */
1101
- name: string;
1102
- /** Gets or sets variable title. */
1103
- title: string;
1104
- /**
1105
- * Values combine types.
1106
- *
1107
- * Array
1108
- *
1109
- * Value
1110
- */
1111
- combineType: CombineType;
1112
- /**
1113
- * Gets or sets configuration id.
1114
- * @format int32
1115
- */
1116
- idConfig: number;
1117
- }
1118
1050
  /**
1119
1051
  * Description of the temp file as a task data storage.
1120
1052
  */
@@ -2690,29 +2622,7 @@ export declare type PagedFeaturesListDc = ListResponseFeatureDc;
2690
2622
  /**
2691
2623
  * A list of items that is returned for filtered paged requests.
2692
2624
  */
2693
- export interface PagedListConfigInfo {
2694
- /**
2695
- * Total number of items that the list contains, e.g. if the paging is not applied.
2696
- * @format int64
2697
- */
2698
- totalCount?: number;
2699
- /**
2700
- * The first index of the item in the list that is returned in the Items parameter.
2701
- * @format int32
2702
- */
2703
- offset?: number;
2704
- /**
2705
- * Maximum number of the items that the Items parameter may contain.
2706
- * @format int32
2707
- */
2708
- limit?: number;
2709
- /** The retrieved items in the list. */
2710
- items?: ConfigInfo[];
2711
- }
2712
- /**
2713
- * A list of items that is returned for filtered paged requests.
2714
- */
2715
- export interface PagedListVariableInfo {
2625
+ export interface PagedListConfigDc {
2716
2626
  /**
2717
2627
  * Total number of items that the list contains, e.g. if the paging is not applied.
2718
2628
  * @format int64
@@ -2729,29 +2639,7 @@ export interface PagedListVariableInfo {
2729
2639
  */
2730
2640
  limit?: number;
2731
2641
  /** The retrieved items in the list. */
2732
- items?: VariableInfo[];
2733
- }
2734
- /**
2735
- * A list of items that is returned for filtered paged requests.
2736
- */
2737
- export interface PagedListVariableValueInfo {
2738
- /**
2739
- * Total number of items that the list contains, e.g. if the paging is not applied.
2740
- * @format int64
2741
- */
2742
- totalCount?: number;
2743
- /**
2744
- * The first index of the item in the list that is returned in the Items parameter.
2745
- * @format int32
2746
- */
2747
- offset?: number;
2748
- /**
2749
- * Maximum number of the items that the Items parameter may contain.
2750
- * @format int32
2751
- */
2752
- limit?: number;
2753
- /** The retrieved items in the list. */
2754
- items?: VariableValueInfo[];
2642
+ items?: ConfigDc[];
2755
2643
  }
2756
2644
  /**
2757
2645
  * Number parameter of a symbol. The parameter can be represented as a simple number, or
@@ -4751,20 +4639,6 @@ export declare type TrackSymbolBaseDc = SymbolDc & {
4751
4639
  export declare type UnionTaskParametersDc = FeatureTaskParametersDc & {
4752
4640
  type?: string;
4753
4641
  };
4754
- /**
4755
- * Update configuration data contract.
4756
- */
4757
- export interface UpdateConfigDc {
4758
- /**
4759
- * Gets or sets config primary key.
4760
- * @format int32
4761
- */
4762
- id?: number;
4763
- /** Gets or sets config description. */
4764
- description: string;
4765
- /** Gets or sets config url path. */
4766
- urlPath: string;
4767
- }
4768
4642
  /**
4769
4643
  * Update role data contract.
4770
4644
  */
@@ -4828,66 +4702,15 @@ export interface UpdateUserDc {
4828
4702
  /** Phone number. */
4829
4703
  phone?: string;
4830
4704
  }
4831
- /**
4832
- * Update variable value information.
4833
- */
4834
- export interface UpdateValueDc {
4835
- /**
4836
- * Gets or sets variable value primary key.
4837
- * @format int32
4838
- */
4839
- id?: number;
4840
- /** Gets or sets value description. */
4841
- name?: string;
4842
- /**
4843
- * Gets or sets variable id.
4844
- * @format int32
4845
- */
4846
- idVariable: number;
4847
- /** Gets or sets JSON value. */
4848
- value: string;
4849
- /**
4850
- * Gets or sets JSON value.
4851
- * @format int32
4852
- */
4853
- priority: number;
4854
- /** Gets or sets roles. */
4855
- roles?: string[];
4856
- }
4857
- /**
4858
- * Update variable data contract.
4859
- */
4860
- export interface UpdateVariableDc {
4861
- /**
4862
- * Gets or sets variable primary key.
4863
- * @format int32
4864
- */
4865
- id?: number;
4866
- /** Gets or sets variable name. */
4867
- name: string;
4868
- /** Gets or sets variable title. */
4869
- title: string;
4870
- /**
4871
- * Values combine types.
4872
- *
4873
- * Array
4874
- *
4875
- * Value
4876
- */
4877
- combineType: CombineType;
4878
- /**
4879
- * Gets or sets configuration id.
4880
- * @format int32
4881
- */
4882
- idConfig: number;
4883
- }
4884
4705
  /**
4885
4706
  * Upload raster task parameters data contract.
4886
4707
  */
4887
4708
  export declare type UploadRasterTaskParametersDc = TaskParametersDc & {
4888
4709
  target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
4889
4710
  files: string[];
4711
+ attributes?: Record<string, any>;
4890
4712
  maxZoomLevel: number;
4713
+ polygonize?: boolean;
4891
4714
  type?: string;
4892
4715
  };
4893
4716
  /**
@@ -4927,6 +4750,19 @@ export interface UserInfoDc {
4927
4750
  /** The roles of the user. */
4928
4751
  roles?: string[];
4929
4752
  }
4753
+ /**
4754
+ * User or role data contract.
4755
+ */
4756
+ export interface UserOrRoleDc {
4757
+ /** Name. */
4758
+ name?: string;
4759
+ /** Photo. */
4760
+ photo?: string;
4761
+ /** true if item is role otherwise false. */
4762
+ isRole?: boolean;
4763
+ /** User own role. */
4764
+ ownRole?: string;
4765
+ }
4930
4766
  /**
4931
4767
  * Error rise to validate invalid parameters.
4932
4768
  */
@@ -5001,59 +4837,6 @@ export interface ValidationErrorsException {
5001
4837
  /** Exception message. */
5002
4838
  ExceptionMessage?: string;
5003
4839
  }
5004
- /**
5005
- * Get variable information.
5006
- */
5007
- export interface VariableInfo {
5008
- /**
5009
- * Gets or sets variable primary key.
5010
- * @format int32
5011
- */
5012
- id?: number;
5013
- /** Gets or sets variable name. */
5014
- name?: string;
5015
- /** Gets or sets variable title. */
5016
- title?: string;
5017
- /**
5018
- * Values combine types.
5019
- *
5020
- * Array
5021
- *
5022
- * Value
5023
- */
5024
- combineType?: CombineType;
5025
- /**
5026
- * Gets or sets configuration id.
5027
- * @format int32
5028
- */
5029
- idConfig?: number;
5030
- }
5031
- /**
5032
- * Get variable value information.
5033
- */
5034
- export interface VariableValueInfo {
5035
- /**
5036
- * Gets or sets config primary key.
5037
- * @format int32
5038
- */
5039
- id?: number;
5040
- /** Gets or sets value description. */
5041
- name?: string;
5042
- /**
5043
- * Gets or sets variable id.
5044
- * @format int32
5045
- */
5046
- idVariable?: number;
5047
- /**
5048
- * Gets or sets merge priority.
5049
- * @format int32
5050
- */
5051
- priority?: number;
5052
- /** Gets or sets JSON value. */
5053
- value?: string;
5054
- /** Gets or sets roles. */
5055
- roles?: string[];
5056
- }
5057
4840
  export interface Vector2 {
5058
4841
  /** @format int32 */
5059
4842
  dimensions?: number;
@@ -5239,22 +5022,7 @@ export interface IsAutoshareListExistsParams {
5239
5022
  /** Name of the resource. */
5240
5023
  name: string;
5241
5024
  }
5242
- export interface GetConfigurationParams {
5243
- /** URL path. */
5244
- urlPath: string;
5245
- }
5246
- export declare type SetConfigurationPayload = any;
5247
- export interface SetConfigurationParams {
5248
- /** URL path. */
5249
- urlPath: string;
5250
- /** Roles. */
5251
- roles?: string[];
5252
- }
5253
- export interface GetConfigByPathParams {
5254
- /** Client url mapped to configuration. */
5255
- urlPath: string;
5256
- }
5257
- export interface GetConfig1Params {
5025
+ export interface GetConfigurationsListParams {
5258
5026
  /**
5259
5027
  * Offset.
5260
5028
  * @format int32
@@ -5266,34 +5034,20 @@ export interface GetConfig1Params {
5266
5034
  */
5267
5035
  limit?: number;
5268
5036
  }
5269
- export interface GetVariablesParams {
5270
- /**
5271
- * Offset.
5272
- * @format int32
5273
- */
5274
- offset?: number;
5275
- /**
5276
- * Limit (default 10).
5277
- * @format int32
5278
- */
5279
- limit?: number;
5280
- /**
5281
- * Variable id.
5282
- * @format int32
5283
- */
5284
- idVariable: number;
5037
+ export interface GetConfigurationParams {
5038
+ /** URL path. */
5039
+ urlPath: string;
5285
5040
  }
5286
- export interface GetVariables1Params {
5287
- /**
5288
- * Offset.
5289
- * @format int32
5290
- */
5291
- offset?: number;
5292
- /**
5293
- * Limit (default 10).
5294
- * @format int32
5295
- */
5296
- limit?: number;
5041
+ export declare type SetConfigurationPayload = any;
5042
+ export interface SetConfigurationParams {
5043
+ /** URL path. */
5044
+ urlPath: string;
5045
+ /** Description. */
5046
+ description?: string;
5047
+ }
5048
+ export interface RemoveConfigurationParams {
5049
+ /** URL path. */
5050
+ urlPath: string;
5297
5051
  }
5298
5052
  export declare type AddFavoritesPayload = string[];
5299
5053
  export interface RemoveFavoritesParams {
@@ -5338,30 +5092,41 @@ export interface MoreSymbolsParams {
5338
5092
  Justification?: string;
5339
5093
  }
5340
5094
  export interface GeocodeParams {
5341
- /** input address. */
5095
+ /** Input address. */
5342
5096
  address?: string;
5343
5097
  /**
5344
- * Result spatial reference.
5098
+ * Spatial reference.
5345
5099
  * @format int32
5346
5100
  */
5347
5101
  sr?: number;
5102
+ /** Bounging box from left top corner to right bottom corner. */
5103
+ bboxPoints?: number[];
5348
5104
  /** Geocode provider name to use. */
5349
5105
  providerName: string;
5350
5106
  }
5351
5107
  export interface GeocodeByPointParams {
5352
- /** input point geometry. */
5108
+ /** Input point geometry. */
5353
5109
  pointGeometry?: number[];
5354
5110
  /**
5355
- * input point sr.
5111
+ * Input point and bounging box sr.
5356
5112
  * @format int32
5357
5113
  */
5358
- pointSr?: number;
5114
+ sr?: number;
5115
+ /** Bounging box from left top corner to right bottom corner. */
5116
+ bboxPoints?: number[];
5359
5117
  /** Geocode provider name to use. */
5360
5118
  providerName: string;
5361
5119
  }
5362
5120
  export interface SuggestParams {
5363
- /** input address. */
5121
+ /** Input address. */
5364
5122
  address?: string;
5123
+ /**
5124
+ * Bounging box spatial reference.
5125
+ * @format int32
5126
+ */
5127
+ sr?: number;
5128
+ /** Bounging box from left top corner to right bottom corner. */
5129
+ bboxPoints?: number[];
5365
5130
  /** Geocode provider name to use. */
5366
5131
  providerName: string;
5367
5132
  }
@@ -5858,10 +5623,6 @@ export interface GetProjectsListParams {
5858
5623
  forAllUsers?: boolean;
5859
5624
  }
5860
5625
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5861
- export interface DeleteResourcesParams6 {
5862
- /** Resource names. */
5863
- names?: string[];
5864
- }
5865
5626
  export interface SetPreviewBody {
5866
5627
  /** @format binary */
5867
5628
  file?: File;
@@ -5992,6 +5753,10 @@ export interface FindUserByNameByRolesParams {
5992
5753
  /** Roles. */
5993
5754
  roles?: string[];
5994
5755
  }
5756
+ export interface GetUsersAndRolesParams {
5757
+ /** Name filter. */
5758
+ filter?: string;
5759
+ }
5995
5760
  export interface FindUserByNameParams {
5996
5761
  /** String filter for the username. */
5997
5762
  filter?: string;
@@ -6075,13 +5840,15 @@ export interface GetTableListParams {
6075
5840
  geometryFilter?: string[];
6076
5841
  }
6077
5842
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6078
- export interface DeleteResourcesParams5 {
6079
- /** Resource names. */
6080
- names?: string[];
6081
- }
6082
5843
  export interface GetTableDataParams {
6083
5844
  /** String filter for the all text column (uses % and _ wild cards like SQL). */
6084
5845
  filter?: string;
5846
+ /**
5847
+ * Comma separated list of attributes by which to sort the resulting feature list.
5848
+ * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
5849
+ * in descending order.
5850
+ */
5851
+ sort?: string[];
6085
5852
  /**
6086
5853
  * Max number of rows to return.
6087
5854
  * @format int32
@@ -6229,9 +5996,27 @@ export interface GetToolsListsParams {
6229
5996
  */
6230
5997
  status?: ToolStatus;
6231
5998
  }
6232
- export interface ProcessWmsRequestParams {
5999
+ export interface GetCapabilitiesParams {
6000
+ /** Name of the service. */
6001
+ Service?: string;
6002
+ /** When omitted, server shall return latest supported version. */
6003
+ AcceptVersions?: string[];
6004
+ /** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
6005
+ Sections?: string[];
6006
+ /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6007
+ AcceptFormats?: string[];
6008
+ }
6009
+ export interface GetCapabilitiesParams1 {
6010
+ /** Output format of service metadata. */
6011
+ Format?: string;
6012
+ /** Must be WMS. */
6013
+ Service?: string;
6014
+ /** Request name. */
6015
+ Request?: string;
6233
6016
  /** Request version. */
6234
6017
  Version?: string;
6018
+ }
6019
+ export interface GetMapParams {
6235
6020
  /** Comma-separated list of one or more map layers. */
6236
6021
  Layers?: string;
6237
6022
  /** Array of one or more map layers. */
@@ -6276,5 +6061,172 @@ export interface ProcessWmsRequestParams {
6276
6061
  Service?: string;
6277
6062
  /** Request name. */
6278
6063
  Request?: string;
6064
+ /** Request version. */
6065
+ Version?: string;
6066
+ }
6067
+ export interface GetFeatureInfoParams {
6068
+ /** Comma-separated list of one or more layers to be queried. */
6069
+ Query_layers?: string;
6070
+ /** Array of one or more map layers. */
6071
+ QueryLayerNames?: string[];
6072
+ /** Return format of feature information (MIME type). */
6073
+ Info_format?: string;
6074
+ /**
6075
+ * i coordinate in pixels of feature in Map CS.
6076
+ * @format int32
6077
+ */
6078
+ I?: number;
6079
+ /**
6080
+ * j coordinate in pixels of feature in Map CS.
6081
+ * @format int32
6082
+ */
6083
+ J?: number;
6084
+ /**
6085
+ * Number of features about which to return information.
6086
+ * @format int32
6087
+ */
6088
+ Feature_count?: number;
6089
+ /** Comma-separated list of one or more map layers. */
6090
+ Layers?: string;
6091
+ /** Array of one or more map layers. */
6092
+ LayerNames?: string[];
6093
+ /** Comma-separated list of one rendering style per requested layer. */
6094
+ Styles?: string;
6095
+ /** Coordinate reference system for version 1.3.0. */
6096
+ Crs?: string;
6097
+ /** Comma-separated list of bounding box corners (lower left, upper right) in CRS units. */
6098
+ Bbox?: string;
6099
+ /** @format double */
6100
+ 'BoundingBox.Width'?: number;
6101
+ /** @format double */
6102
+ 'BoundingBox.Height'?: number;
6103
+ /** @format int32 */
6104
+ 'BoundingBox.Center.Dimensions'?: number;
6105
+ /** @format int32 */
6106
+ 'BoundingBox.HalfSize.Dimensions'?: number;
6107
+ /**
6108
+ * Width in pixels of map picture.
6109
+ * @format int32
6110
+ */
6111
+ Width?: number;
6112
+ /**
6113
+ * Height in pixels of map picture.
6114
+ * @format int32
6115
+ */
6116
+ Height?: number;
6117
+ /** Output format of map. */
6118
+ Format?: string;
6119
+ /** Background transparency of map. */
6120
+ Transparent?: boolean;
6121
+ /** Hexadecimal red-green-blue colour value for the background color. */
6122
+ Bgcolor?: string;
6123
+ /** The format in which exceptions are to be reported by the WMS. */
6124
+ Exceptions?: string;
6125
+ /** Time value of layer desired. */
6126
+ Time?: string;
6127
+ /** Elevation of layer desired. */
6128
+ Elevation?: string;
6129
+ /** Must be WMS. */
6130
+ Service?: string;
6131
+ /** Request name. */
6132
+ Request?: string;
6133
+ /** Request version. */
6134
+ Version?: string;
6135
+ }
6136
+ export interface GetLegendGraphicParams {
6137
+ /** Specification version for SLD-specification. */
6138
+ SLD_version?: string;
6139
+ /** Layer for which to produce legend graphic. */
6140
+ Layer?: string;
6141
+ /**
6142
+ * This gives the MIME type of the file format in which to return the legend graphic.
6143
+ * Allowed values are the same as for the FORMAT= parameter of the WMS GetMap request.
6144
+ */
6145
+ Format?: string;
6146
+ /**
6147
+ * Style of layer for which to produce legend graphic.
6148
+ * If not present, the default style is selected.
6149
+ * The style may be any valid style available for a layer, including non-SLD internally-defined styles.
6150
+ */
6151
+ Style?: string;
6152
+ /**
6153
+ * Feature type for which to produce the legend graphic.
6154
+ * This is not needed if the layer has only a single feature type.
6155
+ */
6156
+ FeatureType?: string;
6157
+ /**
6158
+ * Rule of style to produce legend graphic for, if applicable.
6159
+ * In the case that a style has multiple rules but no specific rule is selected,
6160
+ * then the map server is obligated to produce a graphic that is representative of all of the rules of the style.
6161
+ */
6162
+ Rule?: string;
6163
+ /** Type of OWS ("WFS" or "WCS"). */
6164
+ Remote_ows_type?: string;
6165
+ /** base URL of OWS. */
6166
+ Remote_ows_url?: string;
6167
+ /**
6168
+ * Coverage for which to produce the legend graphic.
6169
+ * This is not needed if the layer has only a single coverage.
6170
+ */
6171
+ Coverage?: string;
6172
+ /**
6173
+ * In the case that a rule is not specified for a style,
6174
+ * this parameter may assist the server in selecting a more appropriate representative graphic by eliminating internal rules that are out-ofscope.
6175
+ * This value is a standardized scale denominator, defined in Symbology Encoding.
6176
+ * @format double
6177
+ */
6178
+ Scale?: number;
6179
+ /**
6180
+ * This parameter specifies a reference to an external SLD document.
6181
+ * It works in the same way as the SLD= parameter of the WMS GetMap operation.
6182
+ */
6183
+ SLD?: string;
6184
+ /**
6185
+ * This parameter allows an SLD document to be included directly in an HTTP-GET request.
6186
+ * It works in the same way as the SLD_BODY= parameter of the WMS GetMap operation.
6187
+ */
6188
+ SLD_BODY?: string;
6189
+ /**
6190
+ * This gives a hint for the width of the returned graphic in pixels.
6191
+ * Vector-graphics can use this value as a hint for the level of detail to include.
6192
+ * @format int32
6193
+ */
6194
+ Width?: number;
6195
+ /**
6196
+ * This gives a hint for the height of the returned graphic in pixels.
6197
+ * @format int32
6198
+ */
6199
+ Height?: number;
6200
+ /**
6201
+ * This gives the MIME type of the format in which to return exceptions.
6202
+ * Allowed values are the same as for the EXCEPTIONS= parameter of the WMS GetMap request.
6203
+ */
6204
+ Exceptions?: string;
6205
+ /** Must be WMS. */
6206
+ Service?: string;
6207
+ /** Request name. */
6208
+ Request?: string;
6209
+ /** Request version. */
6210
+ Version?: string;
6211
+ }
6212
+ export interface ProcessRequestParams {
6213
+ /** Layer name. */
6214
+ layer?: string;
6215
+ /** wmts version. */
6216
+ version?: string;
6217
+ /** Request type. */
6218
+ request?: string;
6219
+ /** Tile matrix. */
6220
+ tileMatrix?: string;
6221
+ /**
6222
+ * Tile row.
6223
+ * @format int32
6224
+ */
6225
+ tileRow?: number;
6226
+ /**
6227
+ * Tile col.
6228
+ * @format int32
6229
+ */
6230
+ tileCol?: number;
6279
6231
  }
6280
6232
  export {};