@evergis/api 3.0.119 → 3.0.121

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.
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
49
49
  * @request DELETE:/projects
50
50
  * @response `200` Success
51
51
  */
52
- deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams4, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams9, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -27,7 +27,7 @@ export declare class StatisticService extends Service {
27
27
  * @request GET:/statistics/classify
28
28
  * @response `200` Success
29
29
  */
30
- classify(query: ClassifyParams4): Promise<ClassifyDc>;
30
+ classify(query: ClassifyParams9): Promise<ClassifyDc>;
31
31
  /**
32
32
  * No description
33
33
  *
@@ -0,0 +1,207 @@
1
+ import { AccessControlListDc, CreateSymbolCategoryDc, CreateSymbolDc, GetSymbolCategoriesParams, GetSymbolsListParams, PagedListSymbolCategoryInfoDc, PagedListSymbolInfoDc, SymbolCategoryInfoDc, SymbolInfoDc, UpdateSymbolCategoryDc, UpdateSymbolDc } from './data-contracts';
2
+ import { Service } from './Service';
3
+ /**
4
+ * @title Spatial Processing Core API
5
+ * @version 1.0.0
6
+ * @baseUrl /sp
7
+ */
8
+ export declare class SymbolStorageService extends Service {
9
+ /**
10
+ * No description
11
+ *
12
+ * @tags SymbolStorage
13
+ * @name AddSymbolCategory
14
+ * @operationId SymbolStorageController_AddSymbolCategory
15
+ * @summary Add symbol category.
16
+ * @request POST:/symbols/category
17
+ * @response `200` Success
18
+ */
19
+ addSymbolCategory(data: CreateSymbolCategoryDc): Promise<number>;
20
+ /**
21
+ * No description
22
+ *
23
+ * @tags SymbolStorage
24
+ * @name UpdateSymbolCategory
25
+ * @operationId SymbolStorageController_UpdateSymbolCategory
26
+ * @summary Update symbol category by id.
27
+ * @request PATCH:/symbols/category/{id}
28
+ * @response `200` Success
29
+ */
30
+ updateSymbolCategory(id: number, data: UpdateSymbolCategoryDc): Promise<void>;
31
+ /**
32
+ * No description
33
+ *
34
+ * @tags SymbolStorage
35
+ * @name GetSymbolCategory
36
+ * @operationId SymbolStorageController_GetSymbolCategory
37
+ * @summary Get symbol category by id.
38
+ * @request GET:/symbols/category/{id}
39
+ * @response `200` Success
40
+ */
41
+ getSymbolCategory(id: number): Promise<SymbolCategoryInfoDc>;
42
+ /**
43
+ * No description
44
+ *
45
+ * @tags SymbolStorage
46
+ * @name RemoveSymbolCategory
47
+ * @operationId SymbolStorageController_RemoveSymbolCategory
48
+ * @summary Delete symbol category by id.
49
+ * @request DELETE:/symbols/category/{id}
50
+ * @response `200` Success
51
+ */
52
+ removeSymbolCategory(id: number): Promise<void>;
53
+ /**
54
+ * No description
55
+ *
56
+ * @tags SymbolStorage
57
+ * @name GetSymbolCategories
58
+ * @operationId SymbolStorageController_GetSymbolCategories
59
+ * @summary Get list of symbol categories.
60
+ * @request GET:/symbols/category/list
61
+ * @response `200` Success
62
+ */
63
+ getSymbolCategories(query: GetSymbolCategoriesParams): Promise<PagedListSymbolCategoryInfoDc>;
64
+ /**
65
+ * No description
66
+ *
67
+ * @tags SymbolStorage
68
+ * @name GetCategoryPermissions
69
+ * @operationId SymbolStorageController_GetCategoryPermissions
70
+ * @summary Get symbol category permissions.
71
+ * @request GET:/symbols/category/permissions/{id}
72
+ * @response `200` Success
73
+ */
74
+ getCategoryPermissions(id: number): Promise<AccessControlListDc>;
75
+ /**
76
+ * No description
77
+ *
78
+ * @tags SymbolStorage
79
+ * @name AddCategoryPermissions
80
+ * @operationId SymbolStorageController_AddCategoryPermissions
81
+ * @summary Adds permissions for the symbol category, combining existing permissions with the given one.
82
+ * @request POST:/symbols/category/permissions/{id}
83
+ * @response `200` Success
84
+ */
85
+ addCategoryPermissions(id: number, data: AccessControlListDc): Promise<AccessControlListDc>;
86
+ /**
87
+ * No description
88
+ *
89
+ * @tags SymbolStorage
90
+ * @name ChangeCategoryPermissions
91
+ * @operationId SymbolStorageController_ChangeCategoryPermissions
92
+ * @summary Replaces existing access control list for the symbol category with the given one.
93
+ * @request PATCH:/symbols/category/permissions/{id}
94
+ * @response `200` Success
95
+ */
96
+ changeCategoryPermissions(id: number, data: AccessControlListDc): Promise<AccessControlListDc>;
97
+ /**
98
+ * No description
99
+ *
100
+ * @tags SymbolStorage
101
+ * @name RemoveCategoryPermissions
102
+ * @operationId SymbolStorageController_RemoveCategoryPermissions
103
+ * @summary Removes permissions for the symbol category for the given role.
104
+ * @request DELETE:/symbols/category/permissions/{id}/{role}
105
+ * @response `200` Success
106
+ */
107
+ removeCategoryPermissions(id: number, role: string): Promise<AccessControlListDc>;
108
+ /**
109
+ * No description
110
+ *
111
+ * @tags SymbolStorage
112
+ * @name AddSymbol
113
+ * @operationId SymbolStorageController_AddSymbol
114
+ * @summary Add symbol.
115
+ * @request POST:/symbols
116
+ * @response `200` Success
117
+ */
118
+ addSymbol(data: CreateSymbolDc): Promise<number>;
119
+ /**
120
+ * No description
121
+ *
122
+ * @tags SymbolStorage
123
+ * @name UpdateSymbol
124
+ * @operationId SymbolStorageController_UpdateSymbol
125
+ * @summary Update symbol by id.
126
+ * @request PATCH:/symbols/{id}
127
+ * @response `200` Success
128
+ */
129
+ updateSymbol(id: number, data: UpdateSymbolDc): Promise<void>;
130
+ /**
131
+ * No description
132
+ *
133
+ * @tags SymbolStorage
134
+ * @name GetSymbol
135
+ * @operationId SymbolStorageController_GetSymbol
136
+ * @summary Get symbol by id.
137
+ * @request GET:/symbols/{id}
138
+ * @response `200` Success
139
+ */
140
+ getSymbol(id: number): Promise<SymbolInfoDc>;
141
+ /**
142
+ * No description
143
+ *
144
+ * @tags SymbolStorage
145
+ * @name RemoveSymbol
146
+ * @operationId SymbolStorageController_RemoveSymbol
147
+ * @summary Remove symbol by id.
148
+ * @request DELETE:/symbols/{id}
149
+ * @response `200` Success
150
+ */
151
+ removeSymbol(id: number): Promise<void>;
152
+ /**
153
+ * No description
154
+ *
155
+ * @tags SymbolStorage
156
+ * @name GetSymbolsList
157
+ * @operationId SymbolStorageController_GetSymbolsList
158
+ * @summary Get symbol list.
159
+ * @request GET:/symbols/list
160
+ * @response `200` Success
161
+ */
162
+ getSymbolsList(query: GetSymbolsListParams): Promise<PagedListSymbolInfoDc>;
163
+ /**
164
+ * No description
165
+ *
166
+ * @tags SymbolStorage
167
+ * @name GetPermissions
168
+ * @operationId SymbolStorageController_GetPermissions
169
+ * @summary Get symbol permissions.
170
+ * @request GET:/symbols/permissions/{id}
171
+ * @response `200` Success
172
+ */
173
+ getPermissions(id: number): Promise<AccessControlListDc>;
174
+ /**
175
+ * No description
176
+ *
177
+ * @tags SymbolStorage
178
+ * @name AddPermissions
179
+ * @operationId SymbolStorageController_AddPermissions
180
+ * @summary Adds permissions for the symbol, combining existing permissions with the given one.
181
+ * @request POST:/symbols/permissions/{id}
182
+ * @response `200` Success
183
+ */
184
+ addPermissions(id: number, data: AccessControlListDc): Promise<AccessControlListDc>;
185
+ /**
186
+ * No description
187
+ *
188
+ * @tags SymbolStorage
189
+ * @name ChangePermissions
190
+ * @operationId SymbolStorageController_ChangePermissions
191
+ * @summary Replaces existing access control list for the symbol with the given one.
192
+ * @request PATCH:/symbols/permissions/{id}
193
+ * @response `200` Success
194
+ */
195
+ changePermissions(id: number, data: AccessControlListDc): Promise<AccessControlListDc>;
196
+ /**
197
+ * No description
198
+ *
199
+ * @tags SymbolStorage
200
+ * @name RemovePermissions
201
+ * @operationId SymbolStorageController_RemovePermissions
202
+ * @summary Removes permissions for the symbol for the given role.
203
+ * @request DELETE:/symbols/permissions/{id}/{role}
204
+ * @response `200` Success
205
+ */
206
+ removePermissions(id: number, role: string): Promise<AccessControlListDc>;
207
+ }
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams6, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams10, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -49,7 +49,7 @@ export declare class TablesService extends Service {
49
49
  * @request DELETE:/tables
50
50
  * @response `200` Success
51
51
  */
52
- deleteResources(query: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams8, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams2, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -16,7 +16,7 @@ export declare class WmsServerService extends Service {
16
16
  * @request GET:/wms#REQUEST=GetCapabilities
17
17
  * @response `200` Success
18
18
  */
19
- getCapabilities(query: GetCapabilitiesParams8): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams2): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -48,6 +48,8 @@ export interface AggregationDataResultDc {
48
48
  *
49
49
  * Extent
50
50
  *
51
+ * H3
52
+ *
51
53
  * Count
52
54
  *
53
55
  * TotalCount
@@ -95,6 +97,8 @@ Sum
95
97
 
96
98
  Extent
97
99
 
100
+ H3
101
+
98
102
  Count
99
103
 
100
104
  TotalCount
@@ -129,6 +133,7 @@ export declare enum AggregationFunction {
129
133
  Avg = "Avg",
130
134
  Sum = "Sum",
131
135
  Extent = "Extent",
136
+ H3 = "H3",
132
137
  Count = "Count",
133
138
  TotalCount = "TotalCount",
134
139
  DistinctCount = "DistinctCount",
@@ -170,6 +175,8 @@ export interface AggregationSettingDc {
170
175
  *
171
176
  * Extent
172
177
  *
178
+ * H3
179
+ *
173
180
  * Count
174
181
  *
175
182
  * TotalCount
@@ -241,6 +248,8 @@ export interface AttributeConfigurationDc {
241
248
  *
242
249
  * Extent
243
250
  *
251
+ * H3
252
+ *
244
253
  * Count
245
254
  *
246
255
  * TotalCount
@@ -274,6 +283,8 @@ export interface AttributeConfigurationDc {
274
283
  stringFormat?: AttributeFormatDc;
275
284
  /** Name of the table. */
276
285
  tableName?: string;
286
+ /** Client data storage. Storage isn't used by server. */
287
+ clientData?: any;
277
288
  }
278
289
  /**
279
290
  * Information about an attribute.
@@ -1072,6 +1083,38 @@ export interface CreateRoleDc {
1072
1083
  /** Description. */
1073
1084
  description?: string;
1074
1085
  }
1086
+ /**
1087
+ * Symbol category data contract.
1088
+ */
1089
+ export interface CreateSymbolCategoryDc {
1090
+ /** Name. */
1091
+ name?: string;
1092
+ /**
1093
+ * Parent category id.
1094
+ * @format int32
1095
+ */
1096
+ parentId?: number;
1097
+ }
1098
+ /**
1099
+ * Symbols.
1100
+ */
1101
+ export interface CreateSymbolDc {
1102
+ /** Symbol name. */
1103
+ name?: string;
1104
+ /** Symbol type. */
1105
+ type?: string;
1106
+ /** Symbol geometry type. */
1107
+ geometryType?: string;
1108
+ /** Is substrate symbol. */
1109
+ form?: boolean;
1110
+ /** Symbol data. */
1111
+ data?: string;
1112
+ /**
1113
+ * Symbol category id.
1114
+ * @format int32
1115
+ */
1116
+ categoryId?: number;
1117
+ }
1075
1118
  /**
1076
1119
  * Data contract for create new user.
1077
1120
  */
@@ -1569,6 +1612,8 @@ export interface FeatureLayerServiceInfoDc {
1569
1612
  dataSourceType?: string;
1570
1613
  /** Copyright text. */
1571
1614
  copyrightText?: string;
1615
+ /** Client data storage. Storage isn't used by server. */
1616
+ clientData?: any;
1572
1617
  /** The type of the resource. */
1573
1618
  type: string;
1574
1619
  /**
@@ -2760,6 +2805,50 @@ export interface PagedListServiceListItemDc {
2760
2805
  /** The retrieved items in the list. */
2761
2806
  items?: ServiceListItemDc[];
2762
2807
  }
2808
+ /**
2809
+ * A list of items that is returned for filtered paged requests.
2810
+ */
2811
+ export interface PagedListSymbolCategoryInfoDc {
2812
+ /**
2813
+ * Total number of items that the list contains, e.g. if the paging is not applied.
2814
+ * @format int64
2815
+ */
2816
+ totalCount?: number;
2817
+ /**
2818
+ * The first index of the item in the list that is returned in the Items parameter.
2819
+ * @format int32
2820
+ */
2821
+ offset?: number;
2822
+ /**
2823
+ * Maximum number of the items that the Items parameter may contain.
2824
+ * @format int32
2825
+ */
2826
+ limit?: number;
2827
+ /** The retrieved items in the list. */
2828
+ items?: SymbolCategoryInfoDc[];
2829
+ }
2830
+ /**
2831
+ * A list of items that is returned for filtered paged requests.
2832
+ */
2833
+ export interface PagedListSymbolInfoDc {
2834
+ /**
2835
+ * Total number of items that the list contains, e.g. if the paging is not applied.
2836
+ * @format int64
2837
+ */
2838
+ totalCount?: number;
2839
+ /**
2840
+ * The first index of the item in the list that is returned in the Items parameter.
2841
+ * @format int32
2842
+ */
2843
+ offset?: number;
2844
+ /**
2845
+ * Maximum number of the items that the Items parameter may contain.
2846
+ * @format int32
2847
+ */
2848
+ limit?: number;
2849
+ /** The retrieved items in the list. */
2850
+ items?: SymbolInfoDc[];
2851
+ }
2763
2852
  /**
2764
2853
  * A list of items that is returned for filtered paged requests.
2765
2854
  */
@@ -3346,6 +3435,11 @@ export interface RemoteTileServiceInfo {
3346
3435
  sourceUrlMask?: string;
3347
3436
  /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
3348
3437
  sourceServers?: string[];
3438
+ /**
3439
+ * Allow direct access.
3440
+ * Allows the client to receive tiles directly from the source server.
3441
+ */
3442
+ allowDirectAccess?: boolean;
3349
3443
  /** Copyright text. */
3350
3444
  copyrightText?: string;
3351
3445
  }
@@ -3660,6 +3754,8 @@ export interface ServiceConfigurationBaseDc {
3660
3754
  tags?: string[];
3661
3755
  /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
3662
3756
  invisibleInCatalog?: boolean;
3757
+ /** Client data storage. Storage isn't used by server. */
3758
+ clientData?: any;
3663
3759
  }
3664
3760
  /**
3665
3761
  * Description of a service in the Spatial Processor.
@@ -3846,6 +3942,17 @@ export declare type SimplePolylineSymbolDc = SymbolDc & {
3846
3942
  beginningSize?: LineEndingSize;
3847
3943
  endingSize?: LineEndingSize;
3848
3944
  };
3945
+ /**
3946
+ * Simplify type.
3947
+
3948
+ Basic
3949
+
3950
+ PreserveTopology
3951
+ */
3952
+ export declare enum SimplifyType {
3953
+ Basic = "Basic",
3954
+ PreserveTopology = "PreserveTopology"
3955
+ }
3849
3956
  /**
3850
3957
  * User social network information.
3851
3958
  */
@@ -3914,6 +4021,8 @@ export interface StatisticsResultObject {
3914
4021
  *
3915
4022
  * Extent
3916
4023
  *
4024
+ * H3
4025
+ *
3917
4026
  * Count
3918
4027
  *
3919
4028
  * TotalCount
@@ -4060,6 +4169,23 @@ export declare type SvgPointSymbolDc = SymbolDc & {
4060
4169
  offset?: CalculatedParameterDc[];
4061
4170
  angle?: CalculatedParameterDc;
4062
4171
  };
4172
+ /**
4173
+ * Symbol category data contract.
4174
+ */
4175
+ export interface SymbolCategoryInfoDc {
4176
+ /**
4177
+ * Id.
4178
+ * @format int32
4179
+ */
4180
+ id?: number;
4181
+ /** Name. */
4182
+ name?: string;
4183
+ /**
4184
+ * Parent category id.
4185
+ * @format int32
4186
+ */
4187
+ parentId?: number;
4188
+ }
4063
4189
  /**
4064
4190
  * Feature symbol.
4065
4191
  */
@@ -4069,6 +4195,31 @@ export interface SymbolDc {
4069
4195
  /** If set true symbol will not be rendered. */
4070
4196
  disabled?: boolean;
4071
4197
  }
4198
+ /**
4199
+ * Symbols.
4200
+ */
4201
+ export interface SymbolInfoDc {
4202
+ /**
4203
+ * Primary key.
4204
+ * @format int32
4205
+ */
4206
+ id?: number;
4207
+ /** Symbol name. */
4208
+ name?: string;
4209
+ /** Symbol type. */
4210
+ type?: string;
4211
+ /** Symbol geometry type. */
4212
+ geometryType?: string;
4213
+ /** Is substrate symbol. */
4214
+ form?: boolean;
4215
+ /** Symbol data. */
4216
+ data?: string;
4217
+ /**
4218
+ * Symbol category id.
4219
+ * @format int32
4220
+ */
4221
+ categoryId?: number;
4222
+ }
4072
4223
  /**
4073
4224
  * Common fields for table configurations.
4074
4225
  */
@@ -4711,6 +4862,38 @@ export interface UpdateRoleDc {
4711
4862
  /** Description. */
4712
4863
  description?: string;
4713
4864
  }
4865
+ /**
4866
+ * Symbol category data contract.
4867
+ */
4868
+ export interface UpdateSymbolCategoryDc {
4869
+ /** Name. */
4870
+ name?: string;
4871
+ /**
4872
+ * Parent category id.
4873
+ * @format int32
4874
+ */
4875
+ parentId?: number;
4876
+ }
4877
+ /**
4878
+ * Symbols.
4879
+ */
4880
+ export interface UpdateSymbolDc {
4881
+ /** Symbol name. */
4882
+ name?: string;
4883
+ /** Symbol type. */
4884
+ type?: string;
4885
+ /** Symbol geometry type. */
4886
+ geometryType?: string;
4887
+ /** Is substrate symbol. */
4888
+ form?: boolean;
4889
+ /** Symbol data. */
4890
+ data?: string;
4891
+ /**
4892
+ * Symbol category id.
4893
+ * @format int32
4894
+ */
4895
+ categoryId?: number;
4896
+ }
4714
4897
  /**
4715
4898
  * Table description with columns what must be added and deleted.
4716
4899
  */
@@ -5515,6 +5698,8 @@ export interface AggregateAttributeParams {
5515
5698
  *
5516
5699
  * Extent
5517
5700
  *
5701
+ * H3
5702
+ *
5518
5703
  * Count
5519
5704
  *
5520
5705
  * TotalCount
@@ -5681,7 +5866,7 @@ export interface GetProjectsListParams {
5681
5866
  tags?: string[];
5682
5867
  }
5683
5868
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5684
- export interface DeleteResourcesParams5 {
5869
+ export interface DeleteResourcesParams9 {
5685
5870
  /** Resource names. */
5686
5871
  names?: string[];
5687
5872
  }
@@ -5889,6 +6074,8 @@ export interface StatisticsDbParams {
5889
6074
  *
5890
6075
  * Extent
5891
6076
  *
6077
+ * H3
6078
+ *
5892
6079
  * Count
5893
6080
  *
5894
6081
  * TotalCount
@@ -5917,7 +6104,7 @@ export interface StatisticsDbParams {
5917
6104
  */
5918
6105
  types?: AggregationFunction[];
5919
6106
  }
5920
- export interface ClassifyParams4 {
6107
+ export interface ClassifyParams9 {
5921
6108
  /** Layer name. */
5922
6109
  name?: string;
5923
6110
  /** Attribute name. */
@@ -5975,6 +6162,35 @@ export interface RemoveFontParams {
5975
6162
  /** Font name. */
5976
6163
  fontName?: string;
5977
6164
  }
6165
+ export interface GetSymbolCategoriesParams {
6166
+ /**
6167
+ * Offset.
6168
+ * @format int32
6169
+ */
6170
+ offset?: number;
6171
+ /**
6172
+ * Limit.
6173
+ * @format int32
6174
+ */
6175
+ limit?: number;
6176
+ }
6177
+ export interface GetSymbolsListParams {
6178
+ /**
6179
+ * Id symbol category.
6180
+ * @format int32
6181
+ */
6182
+ idCategory?: number;
6183
+ /**
6184
+ * Offset.
6185
+ * @format int32
6186
+ */
6187
+ offset?: number;
6188
+ /**
6189
+ * Limit.
6190
+ * @format int32
6191
+ */
6192
+ limit?: number;
6193
+ }
5978
6194
  export interface GetTableListParams {
5979
6195
  /** Table name filter (support % and _ wildcards). */
5980
6196
  filter?: string;
@@ -6012,7 +6228,7 @@ export interface GetTableListParams {
6012
6228
  acl?: string;
6013
6229
  }
6014
6230
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6015
- export interface DeleteResourcesParams6 {
6231
+ export interface DeleteResourcesParams10 {
6016
6232
  /** Resource names. */
6017
6233
  names?: string[];
6018
6234
  }
@@ -6095,8 +6311,27 @@ export interface GetAllParams {
6095
6311
  limit?: number;
6096
6312
  }
6097
6313
  export interface GetVectorTileParams {
6314
+ /** Condition. */
6315
+ condition?: string;
6098
6316
  /** True if name is project name, otherwise false. */
6099
6317
  isProject?: boolean;
6318
+ /** Simpify geometry using the Douglas-Peucker algorithm. */
6319
+ simplify?: boolean;
6320
+ /**
6321
+ * Simplify type.
6322
+ *
6323
+ * Basic
6324
+ *
6325
+ * PreserveTopology
6326
+ */
6327
+ simplifyType?: SimplifyType;
6328
+ /**
6329
+ * Simplify tolerance.
6330
+ * @format float
6331
+ */
6332
+ simplifyTolerance?: number;
6333
+ /** Simplify will retain objects that would otherwise be too small given the tolerance. */
6334
+ simplifyPreserveCollapsed?: boolean;
6100
6335
  /** Project or layer name. */
6101
6336
  name: string;
6102
6337
  /**
@@ -6145,7 +6380,7 @@ export interface GetPublicCapabilitiesParams {
6145
6380
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6146
6381
  AcceptFormats?: string[];
6147
6382
  }
6148
- export interface GetCapabilitiesParams8 {
6383
+ export interface GetCapabilitiesParams2 {
6149
6384
  /** Output format of service metadata. */
6150
6385
  Format?: string;
6151
6386
  /** Must be WMS. */
@@ -6612,6 +6612,7 @@ function isFeatureLayer(layer) {
6612
6612
  AggregationFunction["Avg"] = "Avg";
6613
6613
  AggregationFunction["Sum"] = "Sum";
6614
6614
  AggregationFunction["Extent"] = "Extent";
6615
+ AggregationFunction["H3"] = "H3";
6615
6616
  AggregationFunction["Count"] = "Count";
6616
6617
  AggregationFunction["TotalCount"] = "TotalCount";
6617
6618
  AggregationFunction["DistinctCount"] = "DistinctCount";
@@ -6840,6 +6841,11 @@ function isFeatureLayer(layer) {
6840
6841
  ServerTaskStatus["Timeout"] = "Timeout";
6841
6842
  })(exports.ServerTaskStatus || (exports.ServerTaskStatus = {}));
6842
6843
 
6844
+ (function (SimplifyType) {
6845
+ SimplifyType["Basic"] = "Basic";
6846
+ SimplifyType["PreserveTopology"] = "PreserveTopology";
6847
+ })(exports.SimplifyType || (exports.SimplifyType = {}));
6848
+
6843
6849
  (function (StringSubType) {
6844
6850
  StringSubType["None"] = "None";
6845
6851
  StringSubType["Image"] = "Image";