@evergis/api 4.1.55-alpha.1 → 4.1.56-alpha.0
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__/AccountService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +26 -170
- package/dist/__generated__/data-contracts.d.ts +132 -72
- package/dist/api.esm.js +31 -209
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +31 -209
- package/dist/index.js.map +1 -1
- package/dist/services/Layers.d.ts +5 -10
- package/package.json +2 -2
|
@@ -113,7 +113,7 @@ export declare class AccountService extends Service {
|
|
|
113
113
|
* @secure
|
|
114
114
|
* @response `200` OK
|
|
115
115
|
*/
|
|
116
|
-
registerUser(data: RegisterUserDc): Promise<
|
|
116
|
+
registerUser(data: RegisterUserDc): Promise<void>;
|
|
117
117
|
/**
|
|
118
118
|
* @description Only for users with Everpoint.Sdk.Security.Abstractions.ISecurityManager.SuperuserRole role.
|
|
119
119
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Service } from './Service';
|
|
2
|
-
import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FailedServiceInfoDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, Operation, PagedBulkFeaturesListDc, PagedFeaturesListDc, PatchQueryLayerServicePayload, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc,
|
|
2
|
+
import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DetailedTableInfoDc, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, ExtendedProjectInfoDc, ExtendedProjectInfoDcV2, FailedServiceInfoDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, Operation, PagedBulkFeaturesListDc, PagedFeaturesListDc, PatchQueryLayerService1Payload, PatchQueryLayerServicePayload, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProjectInfoDc, ProjectInfoDcV2, ProxyServiceConfigurationDc, ProxyServiceInfoDc, PublishLayerInfoDc, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, RouteServiceConfigurationDc, ServiceInfoDc, TileCatalogServiceInfoDc, UpdateFeaturePayload, UpdateTableDc, ValidateExpressionParams } from './data-contracts';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
5
|
* @version 1.5.1.0
|
|
@@ -53,199 +53,67 @@ export declare class LayersService extends Service {
|
|
|
53
53
|
* @secure
|
|
54
54
|
* @response `200` OK
|
|
55
55
|
*/
|
|
56
|
-
getLayerInfo(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc>;
|
|
56
|
+
getLayerInfo(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | ProjectInfoDc | ExtendedProjectInfoDc | ProjectInfoDcV2 | ExtendedProjectInfoDcV2 | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc | DetailedTableInfoDc | UpdateTableDc>;
|
|
57
57
|
/**
|
|
58
58
|
* No description
|
|
59
59
|
*
|
|
60
60
|
* @tags Layers
|
|
61
|
-
* @name
|
|
62
|
-
* @operationId
|
|
63
|
-
* @summary
|
|
64
|
-
* @request
|
|
65
|
-
* @secure
|
|
66
|
-
* @response `200` OK
|
|
67
|
-
*/
|
|
68
|
-
getLayersInfo(query: GetLayersInfoParams): Promise<(ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc)[]>;
|
|
69
|
-
/**
|
|
70
|
-
* No description
|
|
71
|
-
*
|
|
72
|
-
* @tags Layers
|
|
73
|
-
* @name PublishMapboxService
|
|
74
|
-
* @operationId LayersController_PublishMapboxService
|
|
75
|
-
* @summary Creates new mapbox service.
|
|
76
|
-
* @request POST:/layers#type=Mapbox
|
|
77
|
-
* @secure
|
|
78
|
-
* @response `default` Error
|
|
79
|
-
*/
|
|
80
|
-
publishMapboxService(data: PbfServiceConfigurationDc): Promise<PbfServiceInfoDc>;
|
|
81
|
-
/**
|
|
82
|
-
* No description
|
|
83
|
-
*
|
|
84
|
-
* @tags Layers
|
|
85
|
-
* @name PublishProxyService
|
|
86
|
-
* @operationId LayersController_PublishProxyService
|
|
87
|
-
* @summary Creates new Proxy Service.
|
|
88
|
-
* @request POST:/layers#type=ProxyService
|
|
89
|
-
* @secure
|
|
90
|
-
* @response `default` Error
|
|
91
|
-
*/
|
|
92
|
-
publishProxyService(data: PublishProxyServicePayload): Promise<ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc>;
|
|
93
|
-
/**
|
|
94
|
-
* No description
|
|
95
|
-
*
|
|
96
|
-
* @tags Layers
|
|
97
|
-
* @name PublishRouteService
|
|
98
|
-
* @operationId LayersController_PublishRouteService
|
|
99
|
-
* @summary Creates new Route Service.
|
|
100
|
-
* @request POST:/layers#type=RouteService
|
|
101
|
-
* @secure
|
|
102
|
-
* @response `200` OK
|
|
103
|
-
*/
|
|
104
|
-
publishRouteService(data: RouteServiceConfigurationDc): Promise<void>;
|
|
105
|
-
/**
|
|
106
|
-
* No description
|
|
107
|
-
*
|
|
108
|
-
* @tags Layers
|
|
109
|
-
* @name PublishLinearService
|
|
110
|
-
* @operationId LayersController_PublishLinearService
|
|
111
|
-
* @summary Creates new Linear Service.
|
|
112
|
-
* @request POST:/layers#type=LinearService
|
|
113
|
-
* @secure
|
|
114
|
-
* @response `200` OK
|
|
115
|
-
*/
|
|
116
|
-
publishLinearService(data: LinearServiceConfigurationDc): Promise<void>;
|
|
117
|
-
/**
|
|
118
|
-
* No description
|
|
119
|
-
*
|
|
120
|
-
* @tags Layers
|
|
121
|
-
* @name PublishRemoteTileService
|
|
122
|
-
* @operationId LayersController_PublishRemoteTileService
|
|
123
|
-
* @summary Creates new Remote Tile Service.
|
|
124
|
-
* @request POST:/layers#type=RemoteTileService
|
|
125
|
-
* @secure
|
|
126
|
-
* @response `default` Error
|
|
127
|
-
*/
|
|
128
|
-
publishRemoteTileService(data: RemoteTileServiceConfigurationDc): Promise<RemoteTileServiceInfoDc>;
|
|
129
|
-
/**
|
|
130
|
-
* No description
|
|
131
|
-
*
|
|
132
|
-
* @tags Layers
|
|
133
|
-
* @name PublishQueryLayerService
|
|
134
|
-
* @operationId LayersController_PublishQueryLayerService
|
|
135
|
-
* @summary Creates new EQL-based Query Layer Service.
|
|
136
|
-
* @request POST:/layers#type=QueryLayerService
|
|
137
|
-
* @secure
|
|
138
|
-
* @response `default` Error
|
|
139
|
-
*/
|
|
140
|
-
publishQueryLayerService(data: QueryLayerServiceConfigurationDc): Promise<QueryLayerServiceInfoDc>;
|
|
141
|
-
/**
|
|
142
|
-
* No description
|
|
143
|
-
*
|
|
144
|
-
* @tags Layers
|
|
145
|
-
* @name PublishPostgresTileCatalogService
|
|
146
|
-
* @operationId LayersController_PublishPostgresTileCatalogService
|
|
147
|
-
* @summary Creates new Postgres Tile Catalog Service.
|
|
148
|
-
* @request POST:/layers#type=PostgresTileLayerService
|
|
149
|
-
* @secure
|
|
150
|
-
* @response `default` Error
|
|
151
|
-
*/
|
|
152
|
-
publishPostgresTileCatalogService(data: PostgresTileCatalogServiceConfigurationDc): Promise<TileCatalogServiceInfoDc>;
|
|
153
|
-
/**
|
|
154
|
-
* No description
|
|
155
|
-
*
|
|
156
|
-
* @tags Layers
|
|
157
|
-
* @name PublishPythonService
|
|
158
|
-
* @operationId LayersController_PublishPythonService
|
|
159
|
-
* @summary Creates new python service.
|
|
160
|
-
* @request POST:/layers#type=Python
|
|
161
|
-
* @secure
|
|
162
|
-
* @response `default` Error
|
|
163
|
-
*/
|
|
164
|
-
publishPythonService(data: PythonServiceConfigurationDc): Promise<PythonServiceInfoDc>;
|
|
165
|
-
/**
|
|
166
|
-
* No description
|
|
167
|
-
*
|
|
168
|
-
* @tags Layers
|
|
169
|
-
* @name UpdateMapboxService
|
|
170
|
-
* @operationId LayersController_UpdateMapboxService
|
|
171
|
-
* @summary Update mapbox service.
|
|
172
|
-
* @request PATCH:/layers/{name}#type=Mapbox
|
|
173
|
-
* @secure
|
|
174
|
-
* @response `200` OK
|
|
175
|
-
*/
|
|
176
|
-
updateMapboxService(name: string, data: PbfServiceConfigurationDc): Promise<PbfServiceInfoDc>;
|
|
177
|
-
/**
|
|
178
|
-
* No description
|
|
179
|
-
*
|
|
180
|
-
* @tags Layers
|
|
181
|
-
* @name UpdatePythonService
|
|
182
|
-
* @operationId LayersController_UpdatePythonService
|
|
183
|
-
* @summary Update python service.
|
|
184
|
-
* @request PATCH:/layers/{name}#type=Python
|
|
185
|
-
* @secure
|
|
186
|
-
* @response `200` OK
|
|
187
|
-
*/
|
|
188
|
-
updatePythonService(name: string, data: PythonServiceConfigurationDc): Promise<PythonServiceInfoDc>;
|
|
189
|
-
/**
|
|
190
|
-
* No description
|
|
191
|
-
*
|
|
192
|
-
* @tags Layers
|
|
193
|
-
* @name UpdateProxyService
|
|
194
|
-
* @operationId LayersController_UpdateProxyService
|
|
195
|
-
* @summary Update Proxy Service.
|
|
196
|
-
* @request PATCH:/layers/{name}#type=ProxyService
|
|
61
|
+
* @name PatchQueryLayerService
|
|
62
|
+
* @operationId LayersController_PatchQueryLayerService
|
|
63
|
+
* @summary Patch EQL-based Query Layer Service.
|
|
64
|
+
* @request PATCH:/layers/{name}
|
|
197
65
|
* @secure
|
|
198
66
|
* @response `200` OK
|
|
199
67
|
*/
|
|
200
|
-
|
|
68
|
+
patchQueryLayerService(name: string, data: PatchQueryLayerServicePayload): Promise<LinearServiceConfigurationDc | ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc>;
|
|
201
69
|
/**
|
|
202
70
|
* No description
|
|
203
71
|
*
|
|
204
72
|
* @tags Layers
|
|
205
|
-
* @name
|
|
206
|
-
* @operationId
|
|
207
|
-
* @summary
|
|
208
|
-
* @request
|
|
73
|
+
* @name GetLayersInfo
|
|
74
|
+
* @operationId LayersController_GetLayersInfoAsync
|
|
75
|
+
* @summary Returns the layers information.
|
|
76
|
+
* @request GET:/layers/batchInfo
|
|
209
77
|
* @secure
|
|
210
78
|
* @response `200` OK
|
|
211
79
|
*/
|
|
212
|
-
|
|
80
|
+
getLayersInfo(query: GetLayersInfoParams): Promise<(ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | ProjectInfoDc | ExtendedProjectInfoDc | ProjectInfoDcV2 | ExtendedProjectInfoDcV2 | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc | DetailedTableInfoDc | UpdateTableDc)[]>;
|
|
213
81
|
/**
|
|
214
82
|
* No description
|
|
215
83
|
*
|
|
216
84
|
* @tags Layers
|
|
217
|
-
* @name
|
|
218
|
-
* @operationId
|
|
219
|
-
* @summary
|
|
220
|
-
* @request
|
|
85
|
+
* @name PublishService
|
|
86
|
+
* @operationId LayersController_PublishServiceAsync
|
|
87
|
+
* @summary Publishes a service using the specified layer configuration parameters.
|
|
88
|
+
* @request POST:/layers
|
|
221
89
|
* @secure
|
|
222
90
|
* @response `200` OK
|
|
223
91
|
*/
|
|
224
|
-
|
|
92
|
+
publishService(data: PublishLayerInfoDc): Promise<void>;
|
|
225
93
|
/**
|
|
226
94
|
* No description
|
|
227
95
|
*
|
|
228
96
|
* @tags Layers
|
|
229
|
-
* @name
|
|
230
|
-
* @operationId
|
|
231
|
-
* @summary
|
|
232
|
-
* @request
|
|
97
|
+
* @name DeleteResources
|
|
98
|
+
* @operationId LayersController_DeleteResources
|
|
99
|
+
* @summary Bulk delete resources.
|
|
100
|
+
* @request DELETE:/layers
|
|
233
101
|
* @secure
|
|
234
102
|
* @response `200` OK
|
|
235
103
|
*/
|
|
236
|
-
|
|
104
|
+
deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
|
|
237
105
|
/**
|
|
238
106
|
* No description
|
|
239
107
|
*
|
|
240
108
|
* @tags Layers
|
|
241
|
-
* @name
|
|
242
|
-
* @operationId
|
|
109
|
+
* @name PatchQueryLayerService1
|
|
110
|
+
* @operationId LayersController_PatchQueryLayerService_1
|
|
243
111
|
* @summary Patch EQL-based Query Layer Service.
|
|
244
112
|
* @request PATCH:/layers/{name}/v2
|
|
245
113
|
* @secure
|
|
246
114
|
* @response `200` OK
|
|
247
115
|
*/
|
|
248
|
-
|
|
116
|
+
patchQueryLayerService1(name: string, data: PatchQueryLayerService1Payload): Promise<Operation[]>;
|
|
249
117
|
/**
|
|
250
118
|
* No description
|
|
251
119
|
*
|
|
@@ -257,7 +125,7 @@ export declare class LayersService extends Service {
|
|
|
257
125
|
* @secure
|
|
258
126
|
* @response `default` Error
|
|
259
127
|
*/
|
|
260
|
-
reloadService(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc |
|
|
128
|
+
reloadService(name: string): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | PbfServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc>;
|
|
261
129
|
/**
|
|
262
130
|
* No description
|
|
263
131
|
*
|
|
@@ -534,16 +402,4 @@ export declare class LayersService extends Service {
|
|
|
534
402
|
* @response `200` OK
|
|
535
403
|
*/
|
|
536
404
|
getResourceReferences(name: string): Promise<ResourceDependenciesDc>;
|
|
537
|
-
/**
|
|
538
|
-
* No description
|
|
539
|
-
*
|
|
540
|
-
* @tags Layers
|
|
541
|
-
* @name DeleteResources
|
|
542
|
-
* @operationId LayersController_DeleteResources
|
|
543
|
-
* @summary Bulk delete resources.
|
|
544
|
-
* @request DELETE:/layers
|
|
545
|
-
* @secure
|
|
546
|
-
* @response `200` OK
|
|
547
|
-
*/
|
|
548
|
-
deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
|
|
549
405
|
}
|
|
@@ -665,6 +665,8 @@ export interface AttributesConfigurationDc {
|
|
|
665
665
|
titleAttribute?: string;
|
|
666
666
|
/** The name of the attribute that contains the feature geometry. */
|
|
667
667
|
geometryAttribute?: string;
|
|
668
|
+
/** Name of the attribute that contains the ordering of the feature. */
|
|
669
|
+
orderAttribute?: string;
|
|
668
670
|
/** The name of the table in data source service, that contains the data for this layer. */
|
|
669
671
|
tableName?: string;
|
|
670
672
|
/** Configuration of the attributes of the layer. */
|
|
@@ -694,6 +696,17 @@ export interface AvailiableValuesDc {
|
|
|
694
696
|
/** Dictionary of availiable parameters values. */
|
|
695
697
|
values?: Record<string, ValueDc[] | null>;
|
|
696
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* Represents the base class for resource information data contracts, providing common properties for derived
|
|
701
|
+
resource types.
|
|
702
|
+
*/
|
|
703
|
+
export interface BaseResourceInfoDc {
|
|
704
|
+
/**
|
|
705
|
+
* Name of the resource including its namespaces (names of the service managers that contain this service).
|
|
706
|
+
* @minLength 1
|
|
707
|
+
*/
|
|
708
|
+
name: string;
|
|
709
|
+
}
|
|
697
710
|
/**
|
|
698
711
|
* Provides resources with their acl.
|
|
699
712
|
*/
|
|
@@ -1243,6 +1256,8 @@ export interface CreateDirectoryDc {
|
|
|
1243
1256
|
tags?: string[];
|
|
1244
1257
|
/** If true root folder will create as temporary. */
|
|
1245
1258
|
isTemporary?: boolean;
|
|
1259
|
+
/** Check if resource is system. */
|
|
1260
|
+
isSystem?: boolean;
|
|
1246
1261
|
/** Resource icon. */
|
|
1247
1262
|
icon?: string;
|
|
1248
1263
|
/** Rewrite if exists. */
|
|
@@ -1856,6 +1871,13 @@ export type ExtendedProjectInfoDc = ProjectInfoDc & {
|
|
|
1856
1871
|
/** Project content configuration data contract. */
|
|
1857
1872
|
content: ProjectConfigurationDc;
|
|
1858
1873
|
};
|
|
1874
|
+
/**
|
|
1875
|
+
* Project extended configuration data contract.
|
|
1876
|
+
*/
|
|
1877
|
+
export type ExtendedProjectInfoDcV2 = ProjectInfoDcV2 & {
|
|
1878
|
+
/** Project content configuration data contract. */
|
|
1879
|
+
content: ProjectConfigurationDcV2;
|
|
1880
|
+
};
|
|
1859
1881
|
/**
|
|
1860
1882
|
* SPCore.Connectors.Connectors.Base.Models.Projects.ExtendedProjectLayersInfo provides extended project info with included layers info.
|
|
1861
1883
|
*/
|
|
@@ -1949,7 +1971,7 @@ export interface ExternalLayerInfoDc {
|
|
|
1949
1971
|
/**
|
|
1950
1972
|
* The `FailedServiceInfoDc` describes Everpoint.Sdk.Layers.Abstractions.Models.FailedServiceInfo data contact.
|
|
1951
1973
|
*/
|
|
1952
|
-
export type FailedServiceInfoDc =
|
|
1974
|
+
export type FailedServiceInfoDc = BaseResourceInfoDc & {
|
|
1953
1975
|
/**
|
|
1954
1976
|
*
|
|
1955
1977
|
*
|
|
@@ -2045,11 +2067,6 @@ export interface FileUploadResponse {
|
|
|
2045
2067
|
* Provides filter data contract.
|
|
2046
2068
|
*/
|
|
2047
2069
|
export interface FilterDc {
|
|
2048
|
-
/**
|
|
2049
|
-
* Filter string to save.
|
|
2050
|
-
* @deprecated
|
|
2051
|
-
*/
|
|
2052
|
-
filterString?: string;
|
|
2053
2070
|
/** Filter conditions. */
|
|
2054
2071
|
conditions?: string[];
|
|
2055
2072
|
/** Query parameters. */
|
|
@@ -2195,11 +2212,6 @@ export interface GeometryDc {
|
|
|
2195
2212
|
export interface GetBulkExtentsDc {
|
|
2196
2213
|
/** Full name of the layer. */
|
|
2197
2214
|
layerName?: string;
|
|
2198
|
-
/**
|
|
2199
|
-
* If set, only the features that satisfy the condition will be considered when calculating the extent.
|
|
2200
|
-
* @deprecated
|
|
2201
|
-
*/
|
|
2202
|
-
query?: string;
|
|
2203
2215
|
/** Filter conditions. */
|
|
2204
2216
|
conditions?: string[];
|
|
2205
2217
|
/** Query parameters. */
|
|
@@ -2213,11 +2225,6 @@ export interface GetBulkExtentsDc {
|
|
|
2213
2225
|
export interface GetBulkFeaturesParametersDc {
|
|
2214
2226
|
/** Layer name. */
|
|
2215
2227
|
layerName?: string;
|
|
2216
|
-
/**
|
|
2217
|
-
* Sets features filtering query.
|
|
2218
|
-
* @deprecated
|
|
2219
|
-
*/
|
|
2220
|
-
query?: string;
|
|
2221
2228
|
/** Collection of filtering conditions. */
|
|
2222
2229
|
conditions?: string[];
|
|
2223
2230
|
/** Features filtering query parameters. */
|
|
@@ -2262,11 +2269,6 @@ export interface GetBulkFeaturesParametersDc {
|
|
|
2262
2269
|
export interface GetBulkFilteredFeaturesCountDc {
|
|
2263
2270
|
/** Layer name. */
|
|
2264
2271
|
layerName?: string;
|
|
2265
|
-
/**
|
|
2266
|
-
* Layer condition.
|
|
2267
|
-
* @deprecated
|
|
2268
|
-
*/
|
|
2269
|
-
condition?: string;
|
|
2270
2272
|
/** Collection of filtering conditions. */
|
|
2271
2273
|
conditions?: string[];
|
|
2272
2274
|
/** Query parameters. */
|
|
@@ -2295,11 +2297,6 @@ export interface GetClassifyDc {
|
|
|
2295
2297
|
* @minLength 1
|
|
2296
2298
|
*/
|
|
2297
2299
|
attributeName: string;
|
|
2298
|
-
/**
|
|
2299
|
-
* Layer condition.
|
|
2300
|
-
* @deprecated
|
|
2301
|
-
*/
|
|
2302
|
-
condition?: string;
|
|
2303
2300
|
/** Collection of filtering conditions. */
|
|
2304
2301
|
conditions?: string[];
|
|
2305
2302
|
/** Query parameters. */
|
|
@@ -2347,11 +2344,6 @@ export interface GetClassifyDc {
|
|
|
2347
2344
|
* Get features paramaters.
|
|
2348
2345
|
*/
|
|
2349
2346
|
export interface GetFeaturesParametersDc {
|
|
2350
|
-
/**
|
|
2351
|
-
* Features filtering query.
|
|
2352
|
-
* @deprecated
|
|
2353
|
-
*/
|
|
2354
|
-
query?: string;
|
|
2355
2347
|
/** Collection of filtering conditions. */
|
|
2356
2348
|
conditions?: string[];
|
|
2357
2349
|
/** Features filtering query parameters. */
|
|
@@ -2394,11 +2386,6 @@ export interface GetFeaturesParametersDc {
|
|
|
2394
2386
|
* Get features count with layer filter condition data contract.
|
|
2395
2387
|
*/
|
|
2396
2388
|
export interface GetFilteredFeaturesCountDc {
|
|
2397
|
-
/**
|
|
2398
|
-
* Layer condition.
|
|
2399
|
-
* @deprecated
|
|
2400
|
-
*/
|
|
2401
|
-
condition?: string;
|
|
2402
2389
|
/** Collection of filtering conditions. */
|
|
2403
2390
|
conditions?: string[];
|
|
2404
2391
|
/** Query parameters. */
|
|
@@ -2420,11 +2407,6 @@ export interface GetStatisticsDc {
|
|
|
2420
2407
|
* @minLength 1
|
|
2421
2408
|
*/
|
|
2422
2409
|
attributeName: string;
|
|
2423
|
-
/**
|
|
2424
|
-
* Condition.
|
|
2425
|
-
* @deprecated
|
|
2426
|
-
*/
|
|
2427
|
-
condition?: string;
|
|
2428
2410
|
/** Collection of filtering conditions. */
|
|
2429
2411
|
conditions?: string[];
|
|
2430
2412
|
/** Query parameters. */
|
|
@@ -2445,11 +2427,6 @@ export interface GetSumOfProductDc {
|
|
|
2445
2427
|
layerName: string;
|
|
2446
2428
|
/** Attribute name. */
|
|
2447
2429
|
attributes: string[];
|
|
2448
|
-
/**
|
|
2449
|
-
* Layer condition.
|
|
2450
|
-
* @deprecated
|
|
2451
|
-
*/
|
|
2452
|
-
condition?: string;
|
|
2453
2430
|
/** Collection of filtering conditions. */
|
|
2454
2431
|
conditions?: string[];
|
|
2455
2432
|
/** Query parameters. */
|
|
@@ -3568,6 +3545,25 @@ export interface ProjectConfigurationDc {
|
|
|
3568
3545
|
/** Project configuration. */
|
|
3569
3546
|
config?: any;
|
|
3570
3547
|
}
|
|
3548
|
+
/**
|
|
3549
|
+
* Project content configuration data contract.
|
|
3550
|
+
*/
|
|
3551
|
+
export interface ProjectConfigurationDcV2 {
|
|
3552
|
+
/** Client data storage. Expecting not used by server. */
|
|
3553
|
+
clientData?: any;
|
|
3554
|
+
/** Card configuration. Storage isn't used by server. */
|
|
3555
|
+
dashboardConfiguration?: any;
|
|
3556
|
+
/** Developer configuration. */
|
|
3557
|
+
devConfiguration?: any;
|
|
3558
|
+
/** Edit configuration. Storage isn't used by server. */
|
|
3559
|
+
editConfiguration?: any;
|
|
3560
|
+
/** Project information. Storage isn't used by server. */
|
|
3561
|
+
projectInfo?: any;
|
|
3562
|
+
/** Language of the project. */
|
|
3563
|
+
language?: string;
|
|
3564
|
+
/** Project configuration. */
|
|
3565
|
+
config?: any;
|
|
3566
|
+
}
|
|
3571
3567
|
/**
|
|
3572
3568
|
* Project item description.
|
|
3573
3569
|
*/
|
|
@@ -3633,6 +3629,10 @@ export type ProjectInfoDc = ResourceInfoDc & {
|
|
|
3633
3629
|
*/
|
|
3634
3630
|
zoom?: number | null;
|
|
3635
3631
|
};
|
|
3632
|
+
/**
|
|
3633
|
+
* A project configuration data contract.
|
|
3634
|
+
*/
|
|
3635
|
+
export type ProjectInfoDcV2 = ResourceInfoDcV2 & object;
|
|
3636
3636
|
/**
|
|
3637
3637
|
* Data contract for inner layer Legend.
|
|
3638
3638
|
*/
|
|
@@ -3764,6 +3764,16 @@ export type ProxyServiceInfoDc = ServiceInfoDc & {
|
|
|
3764
3764
|
/** Edit configuration. Storage isn't used by server. */
|
|
3765
3765
|
editConfiguration?: any;
|
|
3766
3766
|
};
|
|
3767
|
+
/**
|
|
3768
|
+
* Represents the information required to publish a layer service, including its metadata, configuration, and
|
|
3769
|
+
access control settings.
|
|
3770
|
+
*/
|
|
3771
|
+
export interface PublishLayerInfoDc {
|
|
3772
|
+
/** Access control list for a security object. */
|
|
3773
|
+
acl?: AccessControlListDc;
|
|
3774
|
+
/** Configuration of the service. */
|
|
3775
|
+
configuration: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
3776
|
+
}
|
|
3767
3777
|
export interface PullResponse {
|
|
3768
3778
|
commitSha?: string;
|
|
3769
3779
|
files?: FileDto[];
|
|
@@ -4075,8 +4085,6 @@ export interface QueryTokenDc {
|
|
|
4075
4085
|
dtCreate?: string;
|
|
4076
4086
|
/** @format date-time */
|
|
4077
4087
|
validBefore?: string;
|
|
4078
|
-
/** @format date-time */
|
|
4079
|
-
revokeDt?: string;
|
|
4080
4088
|
isActive?: boolean;
|
|
4081
4089
|
}
|
|
4082
4090
|
/**
|
|
@@ -4350,11 +4358,66 @@ export interface ResourceDependenciesDc {
|
|
|
4350
4358
|
* The `ResourceInfoDc` provides information about resource.
|
|
4351
4359
|
*/
|
|
4352
4360
|
export interface ResourceInfoDc {
|
|
4361
|
+
/** Resource alias. */
|
|
4362
|
+
alias?: string;
|
|
4363
|
+
/** Resource owner. */
|
|
4364
|
+
owner?: string;
|
|
4365
|
+
/** Resource description. */
|
|
4366
|
+
description?: string;
|
|
4367
|
+
/**
|
|
4368
|
+
* The date when resource was created.
|
|
4369
|
+
* @format date-time
|
|
4370
|
+
*/
|
|
4371
|
+
createdDate?: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* The date when resource was last modified.
|
|
4374
|
+
* @format date-time
|
|
4375
|
+
*/
|
|
4376
|
+
changedDate?: string;
|
|
4377
|
+
/**
|
|
4378
|
+
*
|
|
4379
|
+
*
|
|
4380
|
+
* none
|
|
4381
|
+
*
|
|
4382
|
+
* configure
|
|
4383
|
+
*
|
|
4384
|
+
* write
|
|
4385
|
+
*
|
|
4386
|
+
* read
|
|
4387
|
+
*
|
|
4388
|
+
* read,configure
|
|
4389
|
+
*
|
|
4390
|
+
* read,write
|
|
4391
|
+
*
|
|
4392
|
+
* read,write,configure
|
|
4393
|
+
*/
|
|
4394
|
+
permissions?: Permissions;
|
|
4395
|
+
/** Access control list for a security object. */
|
|
4396
|
+
acl?: AccessControlListDc;
|
|
4397
|
+
/**
|
|
4398
|
+
* Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
|
|
4399
|
+
* @minLength 0
|
|
4400
|
+
* @maxLength 102400
|
|
4401
|
+
*/
|
|
4402
|
+
icon?: string;
|
|
4403
|
+
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
4404
|
+
invisibleInCatalog?: boolean;
|
|
4405
|
+
/** Parent id in resources catalog. */
|
|
4406
|
+
parentId?: string;
|
|
4407
|
+
/** Resource id in resources catalog. */
|
|
4408
|
+
resourceId?: string;
|
|
4409
|
+
/** Resource tags. */
|
|
4410
|
+
tags?: string[];
|
|
4353
4411
|
/**
|
|
4354
4412
|
* Name of the resource including its namespaces (names of the service managers that contain this service).
|
|
4355
4413
|
* @minLength 1
|
|
4356
4414
|
*/
|
|
4357
4415
|
name: string;
|
|
4416
|
+
}
|
|
4417
|
+
/**
|
|
4418
|
+
* The `ResourceInfoDc` provides information about resource.
|
|
4419
|
+
*/
|
|
4420
|
+
export interface ResourceInfoDcV2 {
|
|
4358
4421
|
/** Resource alias. */
|
|
4359
4422
|
alias?: string;
|
|
4360
4423
|
/** Resource owner. */
|
|
@@ -4389,22 +4452,23 @@ export interface ResourceInfoDc {
|
|
|
4389
4452
|
* read,write,configure
|
|
4390
4453
|
*/
|
|
4391
4454
|
permissions?: Permissions;
|
|
4392
|
-
/** Access control list for a security object. */
|
|
4393
|
-
acl?: AccessControlListDc;
|
|
4394
4455
|
/**
|
|
4395
4456
|
* Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
|
|
4396
4457
|
* @minLength 0
|
|
4397
4458
|
* @maxLength 102400
|
|
4398
4459
|
*/
|
|
4399
4460
|
icon?: string;
|
|
4400
|
-
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
4401
|
-
invisibleInCatalog?: boolean;
|
|
4402
4461
|
/** Parent id in resources catalog. */
|
|
4403
4462
|
parentId?: string;
|
|
4404
4463
|
/** Resource id in resources catalog. */
|
|
4405
4464
|
resourceId?: string;
|
|
4406
4465
|
/** Resource tags. */
|
|
4407
4466
|
tags?: string[];
|
|
4467
|
+
/**
|
|
4468
|
+
* Name of the resource including its namespaces (names of the service managers that contain this service).
|
|
4469
|
+
* @minLength 1
|
|
4470
|
+
*/
|
|
4471
|
+
name: string;
|
|
4408
4472
|
}
|
|
4409
4473
|
/**
|
|
4410
4474
|
* Resource parent.
|
|
@@ -4706,8 +4770,6 @@ export interface ServiceConfigurationBaseDc {
|
|
|
4706
4770
|
alias?: string;
|
|
4707
4771
|
/** Description of the service. */
|
|
4708
4772
|
description?: string;
|
|
4709
|
-
/** Access control list for a security object. */
|
|
4710
|
-
acl?: AccessControlListDc;
|
|
4711
4773
|
/**
|
|
4712
4774
|
* Base64 encoded image - icon of the resource.
|
|
4713
4775
|
* @minLength 0
|
|
@@ -5294,11 +5356,6 @@ export interface TableInfoDc {
|
|
|
5294
5356
|
type?: string;
|
|
5295
5357
|
/** Configuration of the table. */
|
|
5296
5358
|
configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
|
|
5297
|
-
/**
|
|
5298
|
-
* Name of the resource including its namespaces (names of the service managers that contain this service).
|
|
5299
|
-
* @minLength 1
|
|
5300
|
-
*/
|
|
5301
|
-
name: string;
|
|
5302
5359
|
/** Resource alias. */
|
|
5303
5360
|
alias?: string;
|
|
5304
5361
|
/** Resource owner. */
|
|
@@ -5349,6 +5406,11 @@ export interface TableInfoDc {
|
|
|
5349
5406
|
resourceId?: string;
|
|
5350
5407
|
/** Resource tags. */
|
|
5351
5408
|
tags?: string[];
|
|
5409
|
+
/**
|
|
5410
|
+
* Name of the resource including its namespaces (names of the service managers that contain this service).
|
|
5411
|
+
* @minLength 1
|
|
5412
|
+
*/
|
|
5413
|
+
name: string;
|
|
5352
5414
|
}
|
|
5353
5415
|
/**
|
|
5354
5416
|
* Tags filter.
|
|
@@ -6688,6 +6750,8 @@ export interface CreateFile1Payload {
|
|
|
6688
6750
|
tags?: string[];
|
|
6689
6751
|
/** File icon. */
|
|
6690
6752
|
icon?: string;
|
|
6753
|
+
/** Check if resource is system. */
|
|
6754
|
+
isSystem?: boolean;
|
|
6691
6755
|
}
|
|
6692
6756
|
export type SetPermissionsPayload = ResourceAclDc[];
|
|
6693
6757
|
export type CopyResourcesPayload = CopyResourceDc[];
|
|
@@ -6999,21 +7063,21 @@ export interface GetBulkExtentsParams {
|
|
|
6999
7063
|
srId?: number;
|
|
7000
7064
|
}
|
|
7001
7065
|
export type GetFilteredFeaturesCountPayload = GetBulkFilteredFeaturesCountDc[];
|
|
7066
|
+
/**
|
|
7067
|
+
* Common fields for service configurations.
|
|
7068
|
+
*/
|
|
7069
|
+
export type PatchQueryLayerServicePayload = LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
7002
7070
|
export interface GetLayersInfoParams {
|
|
7003
7071
|
/** Name array of the layers. */
|
|
7004
7072
|
layerNames?: string[];
|
|
7005
7073
|
/** ProjectName array with layers. */
|
|
7006
7074
|
projectNames?: string[];
|
|
7007
7075
|
}
|
|
7008
|
-
|
|
7009
|
-
|
|
7010
|
-
|
|
7011
|
-
|
|
7012
|
-
|
|
7013
|
-
* Configuration for the proxy service.
|
|
7014
|
-
*/
|
|
7015
|
-
export type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PythonServiceConfigurationDc;
|
|
7016
|
-
export type PatchQueryLayerServicePayload = Operation[];
|
|
7076
|
+
export interface DeleteResourcesParams {
|
|
7077
|
+
/** Resource names. */
|
|
7078
|
+
names?: string[];
|
|
7079
|
+
}
|
|
7080
|
+
export type PatchQueryLayerService1Payload = Operation[];
|
|
7017
7081
|
export interface GetFeatures1Params {
|
|
7018
7082
|
/** Click geometry. */
|
|
7019
7083
|
ewktGeometry?: string;
|
|
@@ -7333,10 +7397,6 @@ export interface GetRasterMetaParams2 {
|
|
|
7333
7397
|
*/
|
|
7334
7398
|
id: number;
|
|
7335
7399
|
}
|
|
7336
|
-
export interface DeleteResourcesParams {
|
|
7337
|
-
/** Resource names. */
|
|
7338
|
-
names?: string[];
|
|
7339
|
-
}
|
|
7340
7400
|
export interface SubscribeOperationParams {
|
|
7341
7401
|
/** Notification tag. */
|
|
7342
7402
|
tag?: string;
|