@evergis/api 3.0.59 → 3.0.62

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
  */
@@ -1653,6 +1585,8 @@ export declare enum FeatureType {
1653
1585
  export interface FileUploadResponse {
1654
1586
  /** Id of the tile in the session static storage. */
1655
1587
  fileId?: string;
1588
+ /** Url to file. */
1589
+ url?: string;
1656
1590
  }
1657
1591
  /**
1658
1592
  * Defines the brush for the fill.
@@ -1804,6 +1738,23 @@ export declare type GridElementDc = ModelElementDc & {
1804
1738
  color?: string;
1805
1739
  gridThickness?: number;
1806
1740
  };
1741
+ /**
1742
+ * Resource group.
1743
+
1744
+ my
1745
+
1746
+ role
1747
+
1748
+ public
1749
+
1750
+ all
1751
+ */
1752
+ export declare enum Group {
1753
+ My = "my",
1754
+ Role = "role",
1755
+ Public = "public",
1756
+ All = "all"
1757
+ }
1807
1758
  /**
1808
1759
  * Defines the brush for the hatch fill.
1809
1760
  */
@@ -2510,6 +2461,7 @@ export interface ListResponseUserInfoDc {
2510
2461
  */
2511
2462
  export declare type LocalTileServiceConfigurationDc = ServiceConfigurationBaseDc & {
2512
2463
  tileInfo?: TileInfoDc;
2464
+ tileCacheLimit?: number;
2513
2465
  };
2514
2466
  /**
2515
2467
  * Tile LOD structure.
@@ -2690,7 +2642,7 @@ export declare type PagedFeaturesListDc = ListResponseFeatureDc;
2690
2642
  /**
2691
2643
  * A list of items that is returned for filtered paged requests.
2692
2644
  */
2693
- export interface PagedListConfigInfo {
2645
+ export interface PagedListConfigDc {
2694
2646
  /**
2695
2647
  * Total number of items that the list contains, e.g. if the paging is not applied.
2696
2648
  * @format int64
@@ -2707,51 +2659,7 @@ export interface PagedListConfigInfo {
2707
2659
  */
2708
2660
  limit?: number;
2709
2661
  /** 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 {
2716
- /**
2717
- * Total number of items that the list contains, e.g. if the paging is not applied.
2718
- * @format int64
2719
- */
2720
- totalCount?: number;
2721
- /**
2722
- * The first index of the item in the list that is returned in the Items parameter.
2723
- * @format int32
2724
- */
2725
- offset?: number;
2726
- /**
2727
- * Maximum number of the items that the Items parameter may contain.
2728
- * @format int32
2729
- */
2730
- limit?: number;
2731
- /** 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[];
2662
+ items?: ConfigDc[];
2755
2663
  }
2756
2664
  /**
2757
2665
  * Number parameter of a symbol. The parameter can be represented as a simple number, or
@@ -3214,6 +3122,10 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
3214
3122
  RequestTimeout?: number;
3215
3123
  };
3216
3124
  export interface RemoteTileServiceInfo {
3125
+ /** Description of a service in the Spatial Processor. */
3126
+ layerInfo?: ServiceInfo;
3127
+ /** Tile info structure. */
3128
+ tileInfo?: TileInfo;
3217
3129
  /** SourceBatch server address. */
3218
3130
  sourceUrl?: string;
3219
3131
  /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
@@ -3222,10 +3134,6 @@ export interface RemoteTileServiceInfo {
3222
3134
  sourceServers?: string[];
3223
3135
  /** Copyright text. */
3224
3136
  copyrightText?: string;
3225
- /** Description of a service in the Spatial Processor. */
3226
- layerInfo?: ServiceInfo;
3227
- /** Tile info structure. */
3228
- tileInfo?: TileInfo;
3229
3137
  }
3230
3138
  /**
3231
3139
  * Service info for a tile service.
@@ -4751,20 +4659,6 @@ export declare type TrackSymbolBaseDc = SymbolDc & {
4751
4659
  export declare type UnionTaskParametersDc = FeatureTaskParametersDc & {
4752
4660
  type?: string;
4753
4661
  };
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
4662
  /**
4769
4663
  * Update role data contract.
4770
4664
  */
@@ -4828,59 +4722,6 @@ export interface UpdateUserDc {
4828
4722
  /** Phone number. */
4829
4723
  phone?: string;
4830
4724
  }
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
4725
  /**
4885
4726
  * Upload raster task parameters data contract.
4886
4727
  */
@@ -4929,6 +4770,19 @@ export interface UserInfoDc {
4929
4770
  /** The roles of the user. */
4930
4771
  roles?: string[];
4931
4772
  }
4773
+ /**
4774
+ * User or role data contract.
4775
+ */
4776
+ export interface UserOrRoleDc {
4777
+ /** Name. */
4778
+ name?: string;
4779
+ /** Photo. */
4780
+ photo?: string;
4781
+ /** true if item is role otherwise false. */
4782
+ isRole?: boolean;
4783
+ /** User own role. */
4784
+ ownRole?: string;
4785
+ }
4932
4786
  /**
4933
4787
  * Error rise to validate invalid parameters.
4934
4788
  */
@@ -5003,59 +4857,6 @@ export interface ValidationErrorsException {
5003
4857
  /** Exception message. */
5004
4858
  ExceptionMessage?: string;
5005
4859
  }
5006
- /**
5007
- * Get variable information.
5008
- */
5009
- export interface VariableInfo {
5010
- /**
5011
- * Gets or sets variable primary key.
5012
- * @format int32
5013
- */
5014
- id?: number;
5015
- /** Gets or sets variable name. */
5016
- name?: string;
5017
- /** Gets or sets variable title. */
5018
- title?: string;
5019
- /**
5020
- * Values combine types.
5021
- *
5022
- * Array
5023
- *
5024
- * Value
5025
- */
5026
- combineType?: CombineType;
5027
- /**
5028
- * Gets or sets configuration id.
5029
- * @format int32
5030
- */
5031
- idConfig?: number;
5032
- }
5033
- /**
5034
- * Get variable value information.
5035
- */
5036
- export interface VariableValueInfo {
5037
- /**
5038
- * Gets or sets config primary key.
5039
- * @format int32
5040
- */
5041
- id?: number;
5042
- /** Gets or sets value description. */
5043
- name?: string;
5044
- /**
5045
- * Gets or sets variable id.
5046
- * @format int32
5047
- */
5048
- idVariable?: number;
5049
- /**
5050
- * Gets or sets merge priority.
5051
- * @format int32
5052
- */
5053
- priority?: number;
5054
- /** Gets or sets JSON value. */
5055
- value?: string;
5056
- /** Gets or sets roles. */
5057
- roles?: string[];
5058
- }
5059
4860
  export interface Vector2 {
5060
4861
  /** @format int32 */
5061
4862
  dimensions?: number;
@@ -5241,22 +5042,7 @@ export interface IsAutoshareListExistsParams {
5241
5042
  /** Name of the resource. */
5242
5043
  name: string;
5243
5044
  }
5244
- export interface GetConfigurationParams {
5245
- /** URL path. */
5246
- urlPath: string;
5247
- }
5248
- export declare type SetConfigurationPayload = any;
5249
- export interface SetConfigurationParams {
5250
- /** URL path. */
5251
- urlPath: string;
5252
- /** Roles. */
5253
- roles?: string[];
5254
- }
5255
- export interface GetConfigByPathParams {
5256
- /** Client url mapped to configuration. */
5257
- urlPath: string;
5258
- }
5259
- export interface GetConfig1Params {
5045
+ export interface GetConfigurationsListParams {
5260
5046
  /**
5261
5047
  * Offset.
5262
5048
  * @format int32
@@ -5268,34 +5054,20 @@ export interface GetConfig1Params {
5268
5054
  */
5269
5055
  limit?: number;
5270
5056
  }
5271
- export interface GetVariablesParams {
5272
- /**
5273
- * Offset.
5274
- * @format int32
5275
- */
5276
- offset?: number;
5277
- /**
5278
- * Limit (default 10).
5279
- * @format int32
5280
- */
5281
- limit?: number;
5282
- /**
5283
- * Variable id.
5284
- * @format int32
5285
- */
5286
- idVariable: number;
5057
+ export interface GetConfigurationParams {
5058
+ /** URL path. */
5059
+ urlPath: string;
5287
5060
  }
5288
- export interface GetVariables1Params {
5289
- /**
5290
- * Offset.
5291
- * @format int32
5292
- */
5293
- offset?: number;
5294
- /**
5295
- * Limit (default 10).
5296
- * @format int32
5297
- */
5298
- limit?: number;
5061
+ export declare type SetConfigurationPayload = any;
5062
+ export interface SetConfigurationParams {
5063
+ /** URL path. */
5064
+ urlPath: string;
5065
+ /** Description. */
5066
+ description?: string;
5067
+ }
5068
+ export interface RemoveConfigurationParams {
5069
+ /** URL path. */
5070
+ urlPath: string;
5299
5071
  }
5300
5072
  export declare type AddFavoritesPayload = string[];
5301
5073
  export interface RemoveFavoritesParams {
@@ -5340,30 +5112,41 @@ export interface MoreSymbolsParams {
5340
5112
  Justification?: string;
5341
5113
  }
5342
5114
  export interface GeocodeParams {
5343
- /** input address. */
5115
+ /** Input address. */
5344
5116
  address?: string;
5345
5117
  /**
5346
- * Result spatial reference.
5118
+ * Spatial reference.
5347
5119
  * @format int32
5348
5120
  */
5349
5121
  sr?: number;
5122
+ /** Bounging box from left top corner to right bottom corner. */
5123
+ bboxPoints?: number[];
5350
5124
  /** Geocode provider name to use. */
5351
5125
  providerName: string;
5352
5126
  }
5353
5127
  export interface GeocodeByPointParams {
5354
- /** input point geometry. */
5128
+ /** Input point geometry. */
5355
5129
  pointGeometry?: number[];
5356
5130
  /**
5357
- * input point sr.
5131
+ * Input point and bounging box sr.
5358
5132
  * @format int32
5359
5133
  */
5360
- pointSr?: number;
5134
+ sr?: number;
5135
+ /** Bounging box from left top corner to right bottom corner. */
5136
+ bboxPoints?: number[];
5361
5137
  /** Geocode provider name to use. */
5362
5138
  providerName: string;
5363
5139
  }
5364
5140
  export interface SuggestParams {
5365
- /** input address. */
5141
+ /** Input address. */
5366
5142
  address?: string;
5143
+ /**
5144
+ * Bounging box spatial reference.
5145
+ * @format int32
5146
+ */
5147
+ sr?: number;
5148
+ /** Bounging box from left top corner to right bottom corner. */
5149
+ bboxPoints?: number[];
5367
5150
  /** Geocode provider name to use. */
5368
5151
  providerName: string;
5369
5152
  }
@@ -5419,6 +5202,18 @@ export interface GetLayersListParams {
5419
5202
  * @format int32
5420
5203
  */
5421
5204
  limit?: number;
5205
+ /**
5206
+ * Resource acl group.
5207
+ *
5208
+ * my
5209
+ *
5210
+ * role
5211
+ *
5212
+ * public
5213
+ *
5214
+ * all
5215
+ */
5216
+ group?: Group;
5422
5217
  /** Strict list of names of the resources to get. */
5423
5218
  names?: string[];
5424
5219
  /** A list of {ServiceInfoDc} fields for sorting. If a field starts with {-} ordering is by descending. */
@@ -5427,8 +5222,6 @@ export interface GetLayersListParams {
5427
5222
  geometryFilter?: string[];
5428
5223
  /** Filters layers list by users favorite. */
5429
5224
  isFavorite?: boolean;
5430
- /** If set, returns for superuser layers for all users. */
5431
- forAllUsers?: boolean;
5432
5225
  }
5433
5226
  export declare type SetPermissionsBatchPayload = ResourceAclDc[];
5434
5227
  export interface DeleteResourcesParams {
@@ -5852,18 +5645,24 @@ export interface GetProjectsListParams {
5852
5645
  * @format int32
5853
5646
  */
5854
5647
  limit?: number;
5648
+ /**
5649
+ * Resource acl group.
5650
+ *
5651
+ * my
5652
+ *
5653
+ * role
5654
+ *
5655
+ * public
5656
+ *
5657
+ * all
5658
+ */
5659
+ group?: Group;
5855
5660
  /** A list of {ProjectInfoDc} fields for sorting. If a field starts with {-} ordering is by descending. */
5856
5661
  orderByFields?: string[];
5857
5662
  /** Filters projects list by users favorite. */
5858
5663
  isFavorite?: boolean;
5859
- /** If set, returns for superuser projects for all users. */
5860
- forAllUsers?: boolean;
5861
5664
  }
5862
5665
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5863
- export interface DeleteResourcesParams6 {
5864
- /** Resource names. */
5865
- names?: string[];
5866
- }
5867
5666
  export interface SetPreviewBody {
5868
5667
  /** @format binary */
5869
5668
  file?: File;
@@ -5968,6 +5767,37 @@ export interface RemoveResource1Params {
5968
5767
  resourceType: ResourceTypeLink;
5969
5768
  }
5970
5769
  export declare type CopyResourcesPayload = CopyResourceDc[];
5770
+ export interface GetResourceParams {
5771
+ /** Object name. */
5772
+ name?: string;
5773
+ /** S3 storage name. */
5774
+ storageName: string;
5775
+ }
5776
+ export interface CreateResourcePayload {
5777
+ /** @format binary */
5778
+ file?: File;
5779
+ }
5780
+ export interface RemoveObjectFromStorageParams {
5781
+ /** Object name. */
5782
+ name?: string;
5783
+ /** S3 storage name. */
5784
+ storageName: string;
5785
+ }
5786
+ export interface GetUrlParams {
5787
+ /** Object name. */
5788
+ fileName?: string;
5789
+ /**
5790
+ * Expiry in seconds. Default expiry is set to 1 days.
5791
+ * @format int32
5792
+ */
5793
+ expires?: number;
5794
+ /** S3 storage name. */
5795
+ storageName: string;
5796
+ }
5797
+ export interface CreateStorageParams {
5798
+ /** S3 storage name. */
5799
+ storageName?: string;
5800
+ }
5971
5801
  export interface GetTaskListParams {
5972
5802
  /** Filter the tasks by their owner names. */
5973
5803
  owners?: string[];
@@ -5994,6 +5824,10 @@ export interface FindUserByNameByRolesParams {
5994
5824
  /** Roles. */
5995
5825
  roles?: string[];
5996
5826
  }
5827
+ export interface GetUsersAndRolesParams {
5828
+ /** Name filter. */
5829
+ filter?: string;
5830
+ }
5997
5831
  export interface FindUserByNameParams {
5998
5832
  /** String filter for the username. */
5999
5833
  filter?: string;
@@ -6065,14 +5899,24 @@ export interface GetTableListParams {
6065
5899
  * @format int32
6066
5900
  */
6067
5901
  limit?: number;
5902
+ /**
5903
+ * Resource acl group.
5904
+ *
5905
+ * my
5906
+ *
5907
+ * role
5908
+ *
5909
+ * public
5910
+ *
5911
+ * all
5912
+ */
5913
+ group?: Group;
6068
5914
  /** Strict list of names of the resources to get. */
6069
5915
  names?: string[];
6070
5916
  /** A list of {TableListDc} fields for sorting. If a field starts with {-} ordering is by descending. */
6071
5917
  orderByFields?: string[];
6072
5918
  /** Filters tables list by users favorite. */
6073
5919
  isFavorite?: boolean;
6074
- /** If set, returns for superuser tables for all users. */
6075
- forAllUsers?: boolean;
6076
5920
  /** Filters layers by geometry types. */
6077
5921
  geometryFilter?: string[];
6078
5922
  }
@@ -6080,6 +5924,12 @@ export declare type SetPermissionsBatchInput = ResourceAclDc[];
6080
5924
  export interface GetTableDataParams {
6081
5925
  /** String filter for the all text column (uses % and _ wild cards like SQL). */
6082
5926
  filter?: string;
5927
+ /**
5928
+ * Comma separated list of attributes by which to sort the resulting feature list.
5929
+ * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
5930
+ * in descending order.
5931
+ */
5932
+ sort?: string[];
6083
5933
  /**
6084
5934
  * Max number of rows to return.
6085
5935
  * @format int32
@@ -6237,7 +6087,65 @@ export interface GetCapabilitiesParams {
6237
6087
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6238
6088
  AcceptFormats?: string[];
6239
6089
  }
6240
- export interface ProcessWmsRequestParams {
6090
+ export interface GetCapabilitiesParams2 {
6091
+ /** Output format of service metadata. */
6092
+ Format?: string;
6093
+ /** Must be WMS. */
6094
+ Service?: string;
6095
+ /** Request name. */
6096
+ Request?: string;
6097
+ /** Request version. */
6098
+ Version?: string;
6099
+ }
6100
+ export interface GetMapParams {
6101
+ /** Comma-separated list of one or more map layers. */
6102
+ Layers?: string;
6103
+ /** Array of one or more map layers. */
6104
+ LayerNames?: string[];
6105
+ /** Comma-separated list of one rendering style per requested layer. */
6106
+ Styles?: string;
6107
+ /** Coordinate reference system for version 1.3.0. */
6108
+ Crs?: string;
6109
+ /** Comma-separated list of bounding box corners (lower left, upper right) in CRS units. */
6110
+ Bbox?: string;
6111
+ /** @format double */
6112
+ 'BoundingBox.Width'?: number;
6113
+ /** @format double */
6114
+ 'BoundingBox.Height'?: number;
6115
+ /** @format int32 */
6116
+ 'BoundingBox.Center.Dimensions'?: number;
6117
+ /** @format int32 */
6118
+ 'BoundingBox.HalfSize.Dimensions'?: number;
6119
+ /**
6120
+ * Width in pixels of map picture.
6121
+ * @format int32
6122
+ */
6123
+ Width?: number;
6124
+ /**
6125
+ * Height in pixels of map picture.
6126
+ * @format int32
6127
+ */
6128
+ Height?: number;
6129
+ /** Output format of map. */
6130
+ Format?: string;
6131
+ /** Background transparency of map. */
6132
+ Transparent?: boolean;
6133
+ /** Hexadecimal red-green-blue colour value for the background color. */
6134
+ Bgcolor?: string;
6135
+ /** The format in which exceptions are to be reported by the WMS. */
6136
+ Exceptions?: string;
6137
+ /** Time value of layer desired. */
6138
+ Time?: string;
6139
+ /** Elevation of layer desired. */
6140
+ Elevation?: string;
6141
+ /** Must be WMS. */
6142
+ Service?: string;
6143
+ /** Request name. */
6144
+ Request?: string;
6145
+ /** Request version. */
6146
+ Version?: string;
6147
+ }
6148
+ export interface GetFeatureInfoParams {
6241
6149
  /** Comma-separated list of one or more layers to be queried. */
6242
6150
  Query_layers?: string;
6243
6151
  /** Array of one or more map layers. */
@@ -6259,8 +6167,6 @@ export interface ProcessWmsRequestParams {
6259
6167
  * @format int32
6260
6168
  */
6261
6169
  Feature_count?: number;
6262
- /** Request version. */
6263
- Version?: string;
6264
6170
  /** Comma-separated list of one or more map layers. */
6265
6171
  Layers?: string;
6266
6172
  /** Array of one or more map layers. */
@@ -6305,6 +6211,96 @@ export interface ProcessWmsRequestParams {
6305
6211
  Service?: string;
6306
6212
  /** Request name. */
6307
6213
  Request?: string;
6214
+ /** Request version. */
6215
+ Version?: string;
6216
+ }
6217
+ export interface GetLegendGraphicParams {
6218
+ /** Specification version for SLD-specification. */
6219
+ SLD_version?: string;
6220
+ /** Layer for which to produce legend graphic. */
6221
+ Layer?: string;
6222
+ /**
6223
+ * This gives the MIME type of the file format in which to return the legend graphic.
6224
+ * Allowed values are the same as for the FORMAT= parameter of the WMS GetMap request.
6225
+ */
6226
+ Format?: string;
6227
+ /**
6228
+ * Style of layer for which to produce legend graphic.
6229
+ * If not present, the default style is selected.
6230
+ * The style may be any valid style available for a layer, including non-SLD internally-defined styles.
6231
+ */
6232
+ Style?: string;
6233
+ /**
6234
+ * Feature type for which to produce the legend graphic.
6235
+ * This is not needed if the layer has only a single feature type.
6236
+ */
6237
+ FeatureType?: string;
6238
+ /**
6239
+ * Rule of style to produce legend graphic for, if applicable.
6240
+ * In the case that a style has multiple rules but no specific rule is selected,
6241
+ * then the map server is obligated to produce a graphic that is representative of all of the rules of the style.
6242
+ */
6243
+ Rule?: string;
6244
+ /** Type of OWS ("WFS" or "WCS"). */
6245
+ Remote_ows_type?: string;
6246
+ /** base URL of OWS. */
6247
+ Remote_ows_url?: string;
6248
+ /**
6249
+ * Coverage for which to produce the legend graphic.
6250
+ * This is not needed if the layer has only a single coverage.
6251
+ */
6252
+ Coverage?: string;
6253
+ /**
6254
+ * In the case that a rule is not specified for a style,
6255
+ * this parameter may assist the server in selecting a more appropriate representative graphic by eliminating internal rules that are out-ofscope.
6256
+ * This value is a standardized scale denominator, defined in Symbology Encoding.
6257
+ * @format double
6258
+ */
6259
+ Scale?: number;
6260
+ /**
6261
+ * This parameter specifies a reference to an external SLD document.
6262
+ * It works in the same way as the SLD= parameter of the WMS GetMap operation.
6263
+ */
6264
+ SLD?: string;
6265
+ /**
6266
+ * This parameter allows an SLD document to be included directly in an HTTP-GET request.
6267
+ * It works in the same way as the SLD_BODY= parameter of the WMS GetMap operation.
6268
+ */
6269
+ SLD_BODY?: string;
6270
+ /**
6271
+ * This gives a hint for the width of the returned graphic in pixels.
6272
+ * Vector-graphics can use this value as a hint for the level of detail to include.
6273
+ * @format int32
6274
+ */
6275
+ Width?: number;
6276
+ /**
6277
+ * This gives a hint for the height of the returned graphic in pixels.
6278
+ * @format int32
6279
+ */
6280
+ Height?: number;
6281
+ /**
6282
+ * This gives the MIME type of the format in which to return exceptions.
6283
+ * Allowed values are the same as for the EXCEPTIONS= parameter of the WMS GetMap request.
6284
+ */
6285
+ Exceptions?: string;
6286
+ /** Must be WMS. */
6287
+ Service?: string;
6288
+ /** Request name. */
6289
+ Request?: string;
6290
+ /** Request version. */
6291
+ Version?: string;
6292
+ }
6293
+ export interface GetCapabilitiesParams1 {
6294
+ /** Output format of service metadata. */
6295
+ Format?: string;
6296
+ /** Must be WMS. */
6297
+ Service?: string;
6298
+ /** Request name. */
6299
+ Request?: string;
6300
+ /** Request version. */
6301
+ Version?: string;
6302
+ /** Layer or project name. */
6303
+ name: string;
6308
6304
  }
6309
6305
  export interface ProcessRequestParams {
6310
6306
  /** Layer name. */