@evergis/api 3.0.59 → 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.
- package/dist/__generated__/ClientSettingsService.d.ts +17 -182
- package/dist/__generated__/SecurityService.d.ts +12 -1
- package/dist/__generated__/WmsServerService.d.ts +38 -5
- package/dist/__generated__/data-contracts.d.ts +194 -291
- package/dist/api.cjs.development.js +41 -276
- 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 +42 -287
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
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,7 +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
|
|
2625
|
+
export interface PagedListConfigDc {
|
|
2694
2626
|
/**
|
|
2695
2627
|
* Total number of items that the list contains, e.g. if the paging is not applied.
|
|
2696
2628
|
* @format int64
|
|
@@ -2707,51 +2639,7 @@ export interface PagedListConfigInfo {
|
|
|
2707
2639
|
*/
|
|
2708
2640
|
limit?: number;
|
|
2709
2641
|
/** The retrieved items in the list. */
|
|
2710
|
-
items?:
|
|
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[];
|
|
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,59 +4702,6 @@ 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
|
*/
|
|
@@ -4929,6 +4750,19 @@ export interface UserInfoDc {
|
|
|
4929
4750
|
/** The roles of the user. */
|
|
4930
4751
|
roles?: string[];
|
|
4931
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
|
+
}
|
|
4932
4766
|
/**
|
|
4933
4767
|
* Error rise to validate invalid parameters.
|
|
4934
4768
|
*/
|
|
@@ -5003,59 +4837,6 @@ export interface ValidationErrorsException {
|
|
|
5003
4837
|
/** Exception message. */
|
|
5004
4838
|
ExceptionMessage?: string;
|
|
5005
4839
|
}
|
|
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
4840
|
export interface Vector2 {
|
|
5060
4841
|
/** @format int32 */
|
|
5061
4842
|
dimensions?: number;
|
|
@@ -5241,22 +5022,7 @@ export interface IsAutoshareListExistsParams {
|
|
|
5241
5022
|
/** Name of the resource. */
|
|
5242
5023
|
name: string;
|
|
5243
5024
|
}
|
|
5244
|
-
export interface
|
|
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 {
|
|
5025
|
+
export interface GetConfigurationsListParams {
|
|
5260
5026
|
/**
|
|
5261
5027
|
* Offset.
|
|
5262
5028
|
* @format int32
|
|
@@ -5268,34 +5034,20 @@ export interface GetConfig1Params {
|
|
|
5268
5034
|
*/
|
|
5269
5035
|
limit?: number;
|
|
5270
5036
|
}
|
|
5271
|
-
export interface
|
|
5272
|
-
/**
|
|
5273
|
-
|
|
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;
|
|
5037
|
+
export interface GetConfigurationParams {
|
|
5038
|
+
/** URL path. */
|
|
5039
|
+
urlPath: string;
|
|
5287
5040
|
}
|
|
5288
|
-
export
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
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;
|
|
5299
5051
|
}
|
|
5300
5052
|
export declare type AddFavoritesPayload = string[];
|
|
5301
5053
|
export interface RemoveFavoritesParams {
|
|
@@ -5340,30 +5092,41 @@ export interface MoreSymbolsParams {
|
|
|
5340
5092
|
Justification?: string;
|
|
5341
5093
|
}
|
|
5342
5094
|
export interface GeocodeParams {
|
|
5343
|
-
/**
|
|
5095
|
+
/** Input address. */
|
|
5344
5096
|
address?: string;
|
|
5345
5097
|
/**
|
|
5346
|
-
*
|
|
5098
|
+
* Spatial reference.
|
|
5347
5099
|
* @format int32
|
|
5348
5100
|
*/
|
|
5349
5101
|
sr?: number;
|
|
5102
|
+
/** Bounging box from left top corner to right bottom corner. */
|
|
5103
|
+
bboxPoints?: number[];
|
|
5350
5104
|
/** Geocode provider name to use. */
|
|
5351
5105
|
providerName: string;
|
|
5352
5106
|
}
|
|
5353
5107
|
export interface GeocodeByPointParams {
|
|
5354
|
-
/**
|
|
5108
|
+
/** Input point geometry. */
|
|
5355
5109
|
pointGeometry?: number[];
|
|
5356
5110
|
/**
|
|
5357
|
-
*
|
|
5111
|
+
* Input point and bounging box sr.
|
|
5358
5112
|
* @format int32
|
|
5359
5113
|
*/
|
|
5360
|
-
|
|
5114
|
+
sr?: number;
|
|
5115
|
+
/** Bounging box from left top corner to right bottom corner. */
|
|
5116
|
+
bboxPoints?: number[];
|
|
5361
5117
|
/** Geocode provider name to use. */
|
|
5362
5118
|
providerName: string;
|
|
5363
5119
|
}
|
|
5364
5120
|
export interface SuggestParams {
|
|
5365
|
-
/**
|
|
5121
|
+
/** Input address. */
|
|
5366
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[];
|
|
5367
5130
|
/** Geocode provider name to use. */
|
|
5368
5131
|
providerName: string;
|
|
5369
5132
|
}
|
|
@@ -5860,10 +5623,6 @@ export interface GetProjectsListParams {
|
|
|
5860
5623
|
forAllUsers?: boolean;
|
|
5861
5624
|
}
|
|
5862
5625
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5863
|
-
export interface DeleteResourcesParams6 {
|
|
5864
|
-
/** Resource names. */
|
|
5865
|
-
names?: string[];
|
|
5866
|
-
}
|
|
5867
5626
|
export interface SetPreviewBody {
|
|
5868
5627
|
/** @format binary */
|
|
5869
5628
|
file?: File;
|
|
@@ -5994,6 +5753,10 @@ export interface FindUserByNameByRolesParams {
|
|
|
5994
5753
|
/** Roles. */
|
|
5995
5754
|
roles?: string[];
|
|
5996
5755
|
}
|
|
5756
|
+
export interface GetUsersAndRolesParams {
|
|
5757
|
+
/** Name filter. */
|
|
5758
|
+
filter?: string;
|
|
5759
|
+
}
|
|
5997
5760
|
export interface FindUserByNameParams {
|
|
5998
5761
|
/** String filter for the username. */
|
|
5999
5762
|
filter?: string;
|
|
@@ -6080,6 +5843,12 @@ export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
|
6080
5843
|
export interface GetTableDataParams {
|
|
6081
5844
|
/** String filter for the all text column (uses % and _ wild cards like SQL). */
|
|
6082
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[];
|
|
6083
5852
|
/**
|
|
6084
5853
|
* Max number of rows to return.
|
|
6085
5854
|
* @format int32
|
|
@@ -6237,7 +6006,65 @@ export interface GetCapabilitiesParams {
|
|
|
6237
6006
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6238
6007
|
AcceptFormats?: string[];
|
|
6239
6008
|
}
|
|
6240
|
-
export interface
|
|
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;
|
|
6016
|
+
/** Request version. */
|
|
6017
|
+
Version?: string;
|
|
6018
|
+
}
|
|
6019
|
+
export interface GetMapParams {
|
|
6020
|
+
/** Comma-separated list of one or more map layers. */
|
|
6021
|
+
Layers?: string;
|
|
6022
|
+
/** Array of one or more map layers. */
|
|
6023
|
+
LayerNames?: string[];
|
|
6024
|
+
/** Comma-separated list of one rendering style per requested layer. */
|
|
6025
|
+
Styles?: string;
|
|
6026
|
+
/** Coordinate reference system for version 1.3.0. */
|
|
6027
|
+
Crs?: string;
|
|
6028
|
+
/** Comma-separated list of bounding box corners (lower left, upper right) in CRS units. */
|
|
6029
|
+
Bbox?: string;
|
|
6030
|
+
/** @format double */
|
|
6031
|
+
'BoundingBox.Width'?: number;
|
|
6032
|
+
/** @format double */
|
|
6033
|
+
'BoundingBox.Height'?: number;
|
|
6034
|
+
/** @format int32 */
|
|
6035
|
+
'BoundingBox.Center.Dimensions'?: number;
|
|
6036
|
+
/** @format int32 */
|
|
6037
|
+
'BoundingBox.HalfSize.Dimensions'?: number;
|
|
6038
|
+
/**
|
|
6039
|
+
* Width in pixels of map picture.
|
|
6040
|
+
* @format int32
|
|
6041
|
+
*/
|
|
6042
|
+
Width?: number;
|
|
6043
|
+
/**
|
|
6044
|
+
* Height in pixels of map picture.
|
|
6045
|
+
* @format int32
|
|
6046
|
+
*/
|
|
6047
|
+
Height?: number;
|
|
6048
|
+
/** Output format of map. */
|
|
6049
|
+
Format?: string;
|
|
6050
|
+
/** Background transparency of map. */
|
|
6051
|
+
Transparent?: boolean;
|
|
6052
|
+
/** Hexadecimal red-green-blue colour value for the background color. */
|
|
6053
|
+
Bgcolor?: string;
|
|
6054
|
+
/** The format in which exceptions are to be reported by the WMS. */
|
|
6055
|
+
Exceptions?: string;
|
|
6056
|
+
/** Time value of layer desired. */
|
|
6057
|
+
Time?: string;
|
|
6058
|
+
/** Elevation of layer desired. */
|
|
6059
|
+
Elevation?: string;
|
|
6060
|
+
/** Must be WMS. */
|
|
6061
|
+
Service?: string;
|
|
6062
|
+
/** Request name. */
|
|
6063
|
+
Request?: string;
|
|
6064
|
+
/** Request version. */
|
|
6065
|
+
Version?: string;
|
|
6066
|
+
}
|
|
6067
|
+
export interface GetFeatureInfoParams {
|
|
6241
6068
|
/** Comma-separated list of one or more layers to be queried. */
|
|
6242
6069
|
Query_layers?: string;
|
|
6243
6070
|
/** Array of one or more map layers. */
|
|
@@ -6259,8 +6086,6 @@ export interface ProcessWmsRequestParams {
|
|
|
6259
6086
|
* @format int32
|
|
6260
6087
|
*/
|
|
6261
6088
|
Feature_count?: number;
|
|
6262
|
-
/** Request version. */
|
|
6263
|
-
Version?: string;
|
|
6264
6089
|
/** Comma-separated list of one or more map layers. */
|
|
6265
6090
|
Layers?: string;
|
|
6266
6091
|
/** Array of one or more map layers. */
|
|
@@ -6305,6 +6130,84 @@ export interface ProcessWmsRequestParams {
|
|
|
6305
6130
|
Service?: string;
|
|
6306
6131
|
/** Request name. */
|
|
6307
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;
|
|
6308
6211
|
}
|
|
6309
6212
|
export interface ProcessRequestParams {
|
|
6310
6213
|
/** Layer name. */
|