@evergis/api 4.0.3 → 4.0.5
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/Api.d.ts +1 -4
- package/dist/__generated__/EqlService.d.ts +12 -1
- package/dist/__generated__/GeneralService.d.ts +1 -12
- package/dist/__generated__/LayersService.d.ts +47 -124
- package/dist/__generated__/ProjectsService.d.ts +11 -77
- package/dist/__generated__/PythonService.d.ts +2 -46
- package/dist/__generated__/QueryTokenAccessService.d.ts +11 -4
- package/dist/__generated__/RemoteTaskManagerService.d.ts +56 -1
- package/dist/__generated__/SecurityService.d.ts +12 -1
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -90
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +391 -618
- package/dist/api.cjs.development.js +303 -768
- 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 +328 -784
- package/dist/api.esm.js.map +1 -1
- package/dist/services/FileUpload.d.ts +3 -3
- package/dist/services/Layers.d.ts +3 -5
- package/dist/services/Projects.d.ts +1 -2
- package/dist/services/Tables.d.ts +1 -2
- package/dist/services/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/__generated__/NamespaceService.d.ts +0 -53
- package/dist/__generated__/NavigationService.d.ts +0 -20
- package/dist/__generated__/S3Service.d.ts +0 -86
- package/dist/__generated__/StaticContentService.d.ts +0 -53
- package/dist/__generated__/TagsService.d.ts +0 -31
- package/dist/__generated__/UniversalSearchService.d.ts +0 -31
- package/dist/services/Namespace.d.ts +0 -3
|
@@ -321,8 +321,6 @@ export declare type ArrowLineEndingDc = LineEndingBaseDc & {
|
|
|
321
321
|
export interface AttributeConfigurationDc {
|
|
322
322
|
/** The name of the attribute. */
|
|
323
323
|
attributeName: string;
|
|
324
|
-
/** The name of the column in the data table that holds the attribute values. */
|
|
325
|
-
columnName?: string;
|
|
326
324
|
/** Human-friendly name for the attribute. */
|
|
327
325
|
alias?: string;
|
|
328
326
|
/** Description for the attribute. */
|
|
@@ -709,9 +707,7 @@ export interface AttributesConfigurationDc {
|
|
|
709
707
|
valuesRange?: ValuesRangeDc[];
|
|
710
708
|
}
|
|
711
709
|
/**
|
|
712
|
-
*
|
|
713
|
-
owner's authorization (to access its protected resources) used by the
|
|
714
|
-
client to obtain an access token.
|
|
710
|
+
*
|
|
715
711
|
|
|
716
712
|
authorization_code
|
|
717
713
|
|
|
@@ -960,6 +956,8 @@ export interface CatalogResourceDc {
|
|
|
960
956
|
srid?: number;
|
|
961
957
|
/** True if resource has children. */
|
|
962
958
|
hasChildren?: boolean;
|
|
959
|
+
/** Resource icon. */
|
|
960
|
+
icon?: string;
|
|
963
961
|
}
|
|
964
962
|
/**
|
|
965
963
|
*
|
|
@@ -1162,168 +1160,6 @@ export declare type CombinedSvgSymbolDc = SymbolDc & {
|
|
|
1162
1160
|
angle?: CalculatedParameterDc | null;
|
|
1163
1161
|
offset?: CalculatedParameterDc[] | null;
|
|
1164
1162
|
};
|
|
1165
|
-
/**
|
|
1166
|
-
* Data contract for SPCore.Connectors.Connectors.Base.Models.Composite.CompositeLayerConfigurationDc.
|
|
1167
|
-
*/
|
|
1168
|
-
export interface CompositeLayerConfigurationDc {
|
|
1169
|
-
/** Gets or sets composite name. */
|
|
1170
|
-
name: string;
|
|
1171
|
-
/** Gets or sets composite layer alias. */
|
|
1172
|
-
alias?: string;
|
|
1173
|
-
/** Gets or sets composite layer visibility. */
|
|
1174
|
-
isVisible?: boolean;
|
|
1175
|
-
/** Checks if legend is expanded. */
|
|
1176
|
-
isLegendExpanded?: boolean;
|
|
1177
|
-
/**
|
|
1178
|
-
* Gets or sets composite layer opacity.
|
|
1179
|
-
* @format float
|
|
1180
|
-
*/
|
|
1181
|
-
opacity?: number;
|
|
1182
|
-
/**
|
|
1183
|
-
* Gets or sets minimum scale resolution.
|
|
1184
|
-
* @format double
|
|
1185
|
-
*/
|
|
1186
|
-
minResolution?: number;
|
|
1187
|
-
/**
|
|
1188
|
-
* Gets or sets maximum scale resolution.
|
|
1189
|
-
* @format double
|
|
1190
|
-
*/
|
|
1191
|
-
maxResolution?: number;
|
|
1192
|
-
}
|
|
1193
|
-
/**
|
|
1194
|
-
* Information about composite service layer.
|
|
1195
|
-
*/
|
|
1196
|
-
export interface CompositeLayerInfoDc {
|
|
1197
|
-
/** Gets or sets composite layer info. */
|
|
1198
|
-
layer: ServiceInfoDc | ResourceInfoDc;
|
|
1199
|
-
/** Gets layer visibility. */
|
|
1200
|
-
isVisible?: boolean;
|
|
1201
|
-
/**
|
|
1202
|
-
* Gets layer opacity.
|
|
1203
|
-
* @format double
|
|
1204
|
-
*/
|
|
1205
|
-
opacity?: number;
|
|
1206
|
-
/**
|
|
1207
|
-
* Gets minimum scale resolution.
|
|
1208
|
-
* @format double
|
|
1209
|
-
*/
|
|
1210
|
-
minResolution?: number;
|
|
1211
|
-
/**
|
|
1212
|
-
* Gets maximum scale resolution.
|
|
1213
|
-
* @format double
|
|
1214
|
-
*/
|
|
1215
|
-
maxResolution?: number;
|
|
1216
|
-
/** Checks if legend is expanded. */
|
|
1217
|
-
isLegendExpanded?: boolean;
|
|
1218
|
-
}
|
|
1219
|
-
/**
|
|
1220
|
-
* Data contract for SPCore.Security.Base.Impl.Services.Composite.CompositeServiceConfiguration.
|
|
1221
|
-
*/
|
|
1222
|
-
export declare type CompositeServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
1223
|
-
layers: CompositeLayerConfigurationDc[];
|
|
1224
|
-
};
|
|
1225
|
-
/**
|
|
1226
|
-
* Information about composite service.
|
|
1227
|
-
*/
|
|
1228
|
-
export interface CompositeServiceInfoDc {
|
|
1229
|
-
/** Composite layer list. */
|
|
1230
|
-
layers: CompositeLayerInfoDc[];
|
|
1231
|
-
/** The type of the resource. */
|
|
1232
|
-
type: string;
|
|
1233
|
-
/**
|
|
1234
|
-
* Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
1235
|
-
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
1236
|
-
* @format double
|
|
1237
|
-
*/
|
|
1238
|
-
minResolution?: number;
|
|
1239
|
-
/**
|
|
1240
|
-
* Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
|
|
1241
|
-
* style of the service, or if no such property is available for this type of the service, 0 is returned.
|
|
1242
|
-
* @format double
|
|
1243
|
-
*/
|
|
1244
|
-
maxResolution?: number;
|
|
1245
|
-
/**
|
|
1246
|
-
* Filtering condition for the objects in the service. If no condition set or if no such property is available
|
|
1247
|
-
* for the given service type, null is returned.
|
|
1248
|
-
*/
|
|
1249
|
-
condition?: string;
|
|
1250
|
-
/**
|
|
1251
|
-
*
|
|
1252
|
-
*
|
|
1253
|
-
* unknown
|
|
1254
|
-
*
|
|
1255
|
-
* point
|
|
1256
|
-
*
|
|
1257
|
-
* polyline
|
|
1258
|
-
*
|
|
1259
|
-
* multipolygon
|
|
1260
|
-
*
|
|
1261
|
-
* envelope
|
|
1262
|
-
*
|
|
1263
|
-
* multipoint
|
|
1264
|
-
*/
|
|
1265
|
-
geometryType: GeometryType;
|
|
1266
|
-
/**
|
|
1267
|
-
* Number of objects in the layer. If the count cannot be calculated or the layer does not contain objects,
|
|
1268
|
-
* 0 is returned.
|
|
1269
|
-
* @format int32
|
|
1270
|
-
*/
|
|
1271
|
-
objectCount?: number;
|
|
1272
|
-
/** The category of the service. */
|
|
1273
|
-
categories?: string[];
|
|
1274
|
-
/** Configuration of the service. */
|
|
1275
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | StyledLayerServiceConfigurationDc | CompositeServiceConfigurationDc;
|
|
1276
|
-
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1277
|
-
name: string;
|
|
1278
|
-
/** Resource alias. */
|
|
1279
|
-
alias?: string;
|
|
1280
|
-
/** Resource owner. */
|
|
1281
|
-
owner?: string;
|
|
1282
|
-
/** Resource description. */
|
|
1283
|
-
description?: string;
|
|
1284
|
-
/** Resource preview. */
|
|
1285
|
-
preview?: string;
|
|
1286
|
-
/**
|
|
1287
|
-
* The date when resource was created.
|
|
1288
|
-
* @format date-time
|
|
1289
|
-
*/
|
|
1290
|
-
createdDate?: string;
|
|
1291
|
-
/**
|
|
1292
|
-
* The date when resource was last modified.
|
|
1293
|
-
* @format date-time
|
|
1294
|
-
*/
|
|
1295
|
-
changedDate?: string;
|
|
1296
|
-
/**
|
|
1297
|
-
*
|
|
1298
|
-
*
|
|
1299
|
-
* none
|
|
1300
|
-
*
|
|
1301
|
-
* configure
|
|
1302
|
-
*
|
|
1303
|
-
* write
|
|
1304
|
-
*
|
|
1305
|
-
* read
|
|
1306
|
-
*
|
|
1307
|
-
* read,configure
|
|
1308
|
-
*
|
|
1309
|
-
* read,write
|
|
1310
|
-
*
|
|
1311
|
-
* read,write,configure
|
|
1312
|
-
*/
|
|
1313
|
-
permissions?: Permissions;
|
|
1314
|
-
/** Access control list for a security object. */
|
|
1315
|
-
acl?: AccessControlListDc;
|
|
1316
|
-
/** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
|
|
1317
|
-
icon?: string;
|
|
1318
|
-
/** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
|
|
1319
|
-
invisibleInCatalog?: boolean;
|
|
1320
|
-
/** Parent id in resources catalog. */
|
|
1321
|
-
parentId?: string;
|
|
1322
|
-
/** Resource id in resources catalog. */
|
|
1323
|
-
resourceId?: string;
|
|
1324
|
-
/** Resource tags. */
|
|
1325
|
-
tags?: string[];
|
|
1326
|
-
}
|
|
1327
1163
|
/**
|
|
1328
1164
|
* Composite symbol.
|
|
1329
1165
|
*/
|
|
@@ -1542,6 +1378,8 @@ export interface CreateDirectoryDc {
|
|
|
1542
1378
|
tags?: string[];
|
|
1543
1379
|
/** If true root folder will create as temporary. */
|
|
1544
1380
|
isTemporary?: boolean;
|
|
1381
|
+
/** Resource icon. */
|
|
1382
|
+
icon?: string;
|
|
1545
1383
|
}
|
|
1546
1384
|
/**
|
|
1547
1385
|
* Upload raster task parameters data contract.
|
|
@@ -1594,6 +1432,8 @@ export interface CreateRoleDc {
|
|
|
1594
1432
|
name: string;
|
|
1595
1433
|
/** Description. */
|
|
1596
1434
|
description?: string;
|
|
1435
|
+
/** Alias. */
|
|
1436
|
+
alias?: string;
|
|
1597
1437
|
}
|
|
1598
1438
|
/**
|
|
1599
1439
|
* Symbol category data contract.
|
|
@@ -1649,6 +1489,8 @@ export interface CreateUserDc {
|
|
|
1649
1489
|
is_email_confirmed?: boolean;
|
|
1650
1490
|
/** Namespace. */
|
|
1651
1491
|
namespace?: string;
|
|
1492
|
+
/** Emoji. */
|
|
1493
|
+
emoji?: string;
|
|
1652
1494
|
/** Username. */
|
|
1653
1495
|
username?: string;
|
|
1654
1496
|
/**
|
|
@@ -1880,6 +1722,8 @@ export interface EqlRequestDc {
|
|
|
1880
1722
|
* @format int32
|
|
1881
1723
|
*/
|
|
1882
1724
|
limit?: number;
|
|
1725
|
+
/** Columns. */
|
|
1726
|
+
columns?: Record<string, string | null>;
|
|
1883
1727
|
/** EQL query parameters. */
|
|
1884
1728
|
parameters?: Record<string, any>;
|
|
1885
1729
|
}
|
|
@@ -2107,7 +1951,7 @@ export interface ExternalLayerInfoDc {
|
|
|
2107
1951
|
layer?: ExternalLayerInfoDc[];
|
|
2108
1952
|
}
|
|
2109
1953
|
/**
|
|
2110
|
-
* The `FailedServiceInfoDc` describes
|
|
1954
|
+
* The `FailedServiceInfoDc` describes Everpoint.Sdk.Layers.Abstractions.Models.FailedServiceInfo data contact.
|
|
2111
1955
|
*/
|
|
2112
1956
|
export interface FailedServiceInfoDc {
|
|
2113
1957
|
/**
|
|
@@ -2208,7 +2052,7 @@ export interface FailedServiceInfoDc {
|
|
|
2208
2052
|
/** The category of the service. */
|
|
2209
2053
|
categories?: string[];
|
|
2210
2054
|
/** Configuration of the service. */
|
|
2211
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc
|
|
2055
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
2212
2056
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
2213
2057
|
name: string;
|
|
2214
2058
|
/** Resource alias. */
|
|
@@ -2333,7 +2177,7 @@ export interface FeatureLayerServiceInfoDc {
|
|
|
2333
2177
|
/** The category of the service. */
|
|
2334
2178
|
categories?: string[];
|
|
2335
2179
|
/** Configuration of the service. */
|
|
2336
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc
|
|
2180
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
2337
2181
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
2338
2182
|
name: string;
|
|
2339
2183
|
/** Resource alias. */
|
|
@@ -2437,24 +2281,6 @@ export interface FeaturesListDc {
|
|
|
2437
2281
|
*/
|
|
2438
2282
|
totalCount: number;
|
|
2439
2283
|
}
|
|
2440
|
-
/**
|
|
2441
|
-
* Uploading file info.
|
|
2442
|
-
*/
|
|
2443
|
-
export interface FileUploadInfoDc {
|
|
2444
|
-
/** Resource id. */
|
|
2445
|
-
resourceId?: string;
|
|
2446
|
-
/** Name of uploaded file. */
|
|
2447
|
-
fileName?: string;
|
|
2448
|
-
/** Id of the file. */
|
|
2449
|
-
fileId?: string;
|
|
2450
|
-
/**
|
|
2451
|
-
* Content length in bytes, if specified.
|
|
2452
|
-
* @format int64
|
|
2453
|
-
*/
|
|
2454
|
-
contentLength?: number;
|
|
2455
|
-
/** Content type, if specified. */
|
|
2456
|
-
contentType?: string;
|
|
2457
|
-
}
|
|
2458
2284
|
/**
|
|
2459
2285
|
* The result of uploading a file.
|
|
2460
2286
|
*/
|
|
@@ -2935,7 +2761,6 @@ export declare type HexGridSymbolDc = SymbolDc & {
|
|
|
2935
2761
|
aggregations?: Record<string, AggregationFunction>;
|
|
2936
2762
|
};
|
|
2937
2763
|
export declare type IAsyncEnumerableLivePreviewDc = object;
|
|
2938
|
-
export declare type IAsyncEnumerableRouteDataDc = object;
|
|
2939
2764
|
export interface IDatum {
|
|
2940
2765
|
/** @format double */
|
|
2941
2766
|
semimajor?: number;
|
|
@@ -3733,24 +3558,6 @@ export declare type MultipointSymbolDc = SymbolDc & {
|
|
|
3733
3558
|
type?: string | null;
|
|
3734
3559
|
pointSymbol?: AutoClassificationRasterSymbolDc | CirclePointSymbolDc | ClassificationRasterSymbolDc | CombinedPolylineSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | IsolinesLabelSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | RgbRasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | CombinedSvgSymbolDc | SvgSymbolDc | AggregatedClusterSymbolDc | ClusterSymbolDc | H3GridSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc | null;
|
|
3735
3560
|
};
|
|
3736
|
-
/**
|
|
3737
|
-
* Information about a namespace .
|
|
3738
|
-
*/
|
|
3739
|
-
export interface NamespaceInfoDc {
|
|
3740
|
-
/** Name of the namespace. */
|
|
3741
|
-
name?: string;
|
|
3742
|
-
/** Owner of the namespace. */
|
|
3743
|
-
owner?: string;
|
|
3744
|
-
/** Db schema for the namespace. */
|
|
3745
|
-
schema?: string;
|
|
3746
|
-
/**
|
|
3747
|
-
* Date when the namespace was created.
|
|
3748
|
-
* @format date-time
|
|
3749
|
-
*/
|
|
3750
|
-
created?: string;
|
|
3751
|
-
/** Access control list. */
|
|
3752
|
-
acl?: Record<string, Permissions>;
|
|
3753
|
-
}
|
|
3754
3561
|
/**
|
|
3755
3562
|
* RasterMetaDc.
|
|
3756
3563
|
*/
|
|
@@ -3867,15 +3674,6 @@ export interface PagedListIEnumerable1 {
|
|
|
3867
3674
|
limit?: number;
|
|
3868
3675
|
items?: Record<string, any>[][];
|
|
3869
3676
|
}
|
|
3870
|
-
export interface PagedListNamespaceInfoDc {
|
|
3871
|
-
/** @format int64 */
|
|
3872
|
-
totalCount?: number;
|
|
3873
|
-
/** @format int32 */
|
|
3874
|
-
offset?: number;
|
|
3875
|
-
/** @format int32 */
|
|
3876
|
-
limit?: number;
|
|
3877
|
-
items?: NamespaceInfoDc[];
|
|
3878
|
-
}
|
|
3879
3677
|
export interface PagedListProjectInfoDc {
|
|
3880
3678
|
/** @format int64 */
|
|
3881
3679
|
totalCount?: number;
|
|
@@ -3885,23 +3683,23 @@ export interface PagedListProjectInfoDc {
|
|
|
3885
3683
|
limit?: number;
|
|
3886
3684
|
items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
|
|
3887
3685
|
}
|
|
3888
|
-
export interface
|
|
3686
|
+
export interface PagedListQueryTokenDc {
|
|
3889
3687
|
/** @format int64 */
|
|
3890
3688
|
totalCount?: number;
|
|
3891
3689
|
/** @format int32 */
|
|
3892
3690
|
offset?: number;
|
|
3893
3691
|
/** @format int32 */
|
|
3894
3692
|
limit?: number;
|
|
3895
|
-
items?:
|
|
3693
|
+
items?: QueryTokenDc[];
|
|
3896
3694
|
}
|
|
3897
|
-
export interface
|
|
3695
|
+
export interface PagedListRoleInfoDc {
|
|
3898
3696
|
/** @format int64 */
|
|
3899
3697
|
totalCount?: number;
|
|
3900
3698
|
/** @format int32 */
|
|
3901
3699
|
offset?: number;
|
|
3902
3700
|
/** @format int32 */
|
|
3903
3701
|
limit?: number;
|
|
3904
|
-
items?:
|
|
3702
|
+
items?: RoleInfoDc[];
|
|
3905
3703
|
}
|
|
3906
3704
|
export interface PagedListServiceListItemDc {
|
|
3907
3705
|
/** @format int64 */
|
|
@@ -3939,15 +3737,6 @@ export interface PagedListTableInfoDc {
|
|
|
3939
3737
|
limit?: number;
|
|
3940
3738
|
items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
|
|
3941
3739
|
}
|
|
3942
|
-
export interface PagedListTagInfoDc {
|
|
3943
|
-
/** @format int64 */
|
|
3944
|
-
totalCount?: number;
|
|
3945
|
-
/** @format int32 */
|
|
3946
|
-
offset?: number;
|
|
3947
|
-
/** @format int32 */
|
|
3948
|
-
limit?: number;
|
|
3949
|
-
items?: TagInfoDc[];
|
|
3950
|
-
}
|
|
3951
3740
|
export interface PagedListUserInfoDc {
|
|
3952
3741
|
/** @format int64 */
|
|
3953
3742
|
totalCount?: number;
|
|
@@ -4031,6 +3820,8 @@ export interface PatchResourceDc {
|
|
|
4031
3820
|
description?: string;
|
|
4032
3821
|
/** A set of tags. */
|
|
4033
3822
|
tags?: string[];
|
|
3823
|
+
/** Resource icon. */
|
|
3824
|
+
icon?: string;
|
|
4034
3825
|
}
|
|
4035
3826
|
/**
|
|
4036
3827
|
* Provides image pattern brush properties.
|
|
@@ -4482,7 +4273,7 @@ export interface ProxyServiceInfoDc {
|
|
|
4482
4273
|
/** The category of the service. */
|
|
4483
4274
|
categories?: string[];
|
|
4484
4275
|
/** Configuration of the service. */
|
|
4485
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc
|
|
4276
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
4486
4277
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4487
4278
|
name: string;
|
|
4488
4279
|
/** Resource alias. */
|
|
@@ -4535,19 +4326,42 @@ export interface ProxyServiceInfoDc {
|
|
|
4535
4326
|
tags?: string[];
|
|
4536
4327
|
}
|
|
4537
4328
|
/**
|
|
4538
|
-
*
|
|
4329
|
+
* Configuration for the python service.
|
|
4539
4330
|
*/
|
|
4540
|
-
export
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4331
|
+
export declare type PythonServiceConfigurationDc = ProxyServiceConfigurationDc & {
|
|
4332
|
+
pythonResourceId?: string | null;
|
|
4333
|
+
layerDefinitionQuery?: PythonServiceMethodDc;
|
|
4334
|
+
featuresQuery?: PythonServiceMethodDc;
|
|
4335
|
+
};
|
|
4336
|
+
/**
|
|
4337
|
+
* Service info for a mapbox service.
|
|
4338
|
+
*/
|
|
4339
|
+
export declare type PythonServiceInfoDc = ProxyServiceInfoDc & object;
|
|
4340
|
+
/**
|
|
4341
|
+
* Description python script method.
|
|
4342
|
+
*/
|
|
4343
|
+
export interface PythonServiceMethodDc {
|
|
4344
|
+
/** Python script file name. */
|
|
4345
|
+
scriptFile?: string;
|
|
4346
|
+
/** Python script method name. */
|
|
4347
|
+
scriptMethod?: string;
|
|
4348
|
+
/** Python script default parameters. */
|
|
4349
|
+
parameters?: any;
|
|
4350
|
+
}
|
|
4351
|
+
/**
|
|
4352
|
+
* TaskMethodConfiguration.
|
|
4353
|
+
*/
|
|
4354
|
+
export interface PythonTaskMethodConfiguration {
|
|
4355
|
+
/** Gets or sets script. */
|
|
4356
|
+
script?: string;
|
|
4357
|
+
/** Gets or sets method. */
|
|
4358
|
+
method?: string;
|
|
4359
|
+
/** Gets or sets description. */
|
|
4548
4360
|
description?: string;
|
|
4549
|
-
/**
|
|
4550
|
-
|
|
4361
|
+
/** Parameters. */
|
|
4362
|
+
parameters?: TaskParameter[];
|
|
4363
|
+
/** TaskReturnType. */
|
|
4364
|
+
return?: TaskReturnType;
|
|
4551
4365
|
}
|
|
4552
4366
|
/**
|
|
4553
4367
|
* Stream quality.
|
|
@@ -4707,7 +4521,7 @@ export interface QueryLayerServiceInfoDc {
|
|
|
4707
4521
|
/** The category of the service. */
|
|
4708
4522
|
categories?: string[];
|
|
4709
4523
|
/** Configuration of the service. */
|
|
4710
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc
|
|
4524
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
4711
4525
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
4712
4526
|
name: string;
|
|
4713
4527
|
/** Resource alias. */
|
|
@@ -4759,6 +4573,17 @@ export interface QueryLayerServiceInfoDc {
|
|
|
4759
4573
|
/** Resource tags. */
|
|
4760
4574
|
tags?: string[];
|
|
4761
4575
|
}
|
|
4576
|
+
export interface QueryTokenDc {
|
|
4577
|
+
username?: string;
|
|
4578
|
+
token?: string;
|
|
4579
|
+
/** @format date-time */
|
|
4580
|
+
dtCreate?: string;
|
|
4581
|
+
/** @format date-time */
|
|
4582
|
+
validBefore?: string;
|
|
4583
|
+
/** @format date-time */
|
|
4584
|
+
revokeDt?: string;
|
|
4585
|
+
isActive?: boolean;
|
|
4586
|
+
}
|
|
4762
4587
|
/**
|
|
4763
4588
|
* Raster band cfg.
|
|
4764
4589
|
*/
|
|
@@ -5169,7 +4994,7 @@ export declare enum ResourceTypeLink {
|
|
|
5169
4994
|
Project = "projects"
|
|
5170
4995
|
}
|
|
5171
4996
|
/**
|
|
5172
|
-
*
|
|
4997
|
+
*
|
|
5173
4998
|
|
|
5174
4999
|
code
|
|
5175
5000
|
|
|
@@ -5194,6 +5019,8 @@ export declare type RgbRasterSymbolDc = RasterSymbolDc & {
|
|
|
5194
5019
|
export interface RoleInfoDc {
|
|
5195
5020
|
/** Username. */
|
|
5196
5021
|
name?: string;
|
|
5022
|
+
/** Alias. */
|
|
5023
|
+
alias?: string;
|
|
5197
5024
|
/** The number of users in the role. */
|
|
5198
5025
|
users?: string[];
|
|
5199
5026
|
/**
|
|
@@ -5360,186 +5187,28 @@ export interface ScaleBarElementDc {
|
|
|
5360
5187
|
enabled?: boolean;
|
|
5361
5188
|
}
|
|
5362
5189
|
/**
|
|
5363
|
-
*
|
|
5190
|
+
* Suggest user information.
|
|
5364
5191
|
*/
|
|
5365
|
-
export interface
|
|
5366
|
-
/**
|
|
5367
|
-
|
|
5368
|
-
/**
|
|
5369
|
-
|
|
5370
|
-
/**
|
|
5371
|
-
|
|
5372
|
-
/** Parameters. */
|
|
5373
|
-
parameters?: ScriptParameter[];
|
|
5374
|
-
/** ScriptReturnType. */
|
|
5375
|
-
return?: ScriptReturnType;
|
|
5376
|
-
/** Script error message. */
|
|
5377
|
-
error?: string;
|
|
5192
|
+
export interface SearchedUserDc {
|
|
5193
|
+
/** Username. */
|
|
5194
|
+
username?: string;
|
|
5195
|
+
/** Own user role. */
|
|
5196
|
+
ownRole?: string;
|
|
5197
|
+
/** Photo. */
|
|
5198
|
+
photo?: string;
|
|
5378
5199
|
}
|
|
5379
5200
|
/**
|
|
5380
|
-
*
|
|
5201
|
+
* General information about the server.
|
|
5381
5202
|
*/
|
|
5382
|
-
export interface
|
|
5383
|
-
/**
|
|
5384
|
-
|
|
5385
|
-
/**
|
|
5386
|
-
|
|
5387
|
-
/**
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
*
|
|
5392
|
-
* Double
|
|
5393
|
-
*
|
|
5394
|
-
* String
|
|
5395
|
-
*
|
|
5396
|
-
* Extent
|
|
5397
|
-
*
|
|
5398
|
-
* Geometry
|
|
5399
|
-
*
|
|
5400
|
-
* IntergerArray
|
|
5401
|
-
*
|
|
5402
|
-
* DoubleArray
|
|
5403
|
-
*
|
|
5404
|
-
* StringArray
|
|
5405
|
-
*
|
|
5406
|
-
* Boolean
|
|
5407
|
-
*
|
|
5408
|
-
* SourceEql
|
|
5409
|
-
*
|
|
5410
|
-
* Layer
|
|
5411
|
-
*
|
|
5412
|
-
* Table
|
|
5413
|
-
*
|
|
5414
|
-
* Folder
|
|
5415
|
-
*
|
|
5416
|
-
* Json
|
|
5417
|
-
*
|
|
5418
|
-
* Expression
|
|
5419
|
-
*
|
|
5420
|
-
* Expressions
|
|
5421
|
-
*/
|
|
5422
|
-
type?: WorkerSettingsFieldType;
|
|
5423
|
-
/** Name. */
|
|
5424
|
-
default?: any;
|
|
5425
|
-
/** ScriptRange. */
|
|
5426
|
-
range?: ScriptRange;
|
|
5427
|
-
/** Name. */
|
|
5428
|
-
nullable?: boolean;
|
|
5429
|
-
}
|
|
5430
|
-
/**
|
|
5431
|
-
* ScriptRange.
|
|
5432
|
-
*/
|
|
5433
|
-
export interface ScriptRange {
|
|
5434
|
-
/** Name. */
|
|
5435
|
-
min?: any;
|
|
5436
|
-
/** Name. */
|
|
5437
|
-
max?: any;
|
|
5438
|
-
}
|
|
5439
|
-
/**
|
|
5440
|
-
* ScriptReturnType.
|
|
5441
|
-
*/
|
|
5442
|
-
export interface ScriptReturnType {
|
|
5443
|
-
/** Gets or sets description. */
|
|
5444
|
-
description?: string;
|
|
5445
|
-
/**
|
|
5446
|
-
*
|
|
5447
|
-
*
|
|
5448
|
-
* Integer
|
|
5449
|
-
*
|
|
5450
|
-
* Double
|
|
5451
|
-
*
|
|
5452
|
-
* String
|
|
5453
|
-
*
|
|
5454
|
-
* Extent
|
|
5455
|
-
*
|
|
5456
|
-
* Geometry
|
|
5457
|
-
*
|
|
5458
|
-
* IntergerArray
|
|
5459
|
-
*
|
|
5460
|
-
* DoubleArray
|
|
5461
|
-
*
|
|
5462
|
-
* StringArray
|
|
5463
|
-
*
|
|
5464
|
-
* Boolean
|
|
5465
|
-
*
|
|
5466
|
-
* SourceEql
|
|
5467
|
-
*
|
|
5468
|
-
* Layer
|
|
5469
|
-
*
|
|
5470
|
-
* Table
|
|
5471
|
-
*
|
|
5472
|
-
* Folder
|
|
5473
|
-
*
|
|
5474
|
-
* Json
|
|
5475
|
-
*
|
|
5476
|
-
* Expression
|
|
5477
|
-
*
|
|
5478
|
-
* Expressions
|
|
5479
|
-
*/
|
|
5480
|
-
type?: WorkerSettingsFieldType;
|
|
5481
|
-
/** Name. */
|
|
5482
|
-
default?: any;
|
|
5483
|
-
/** Name. */
|
|
5484
|
-
nullable?: boolean;
|
|
5485
|
-
}
|
|
5486
|
-
/**
|
|
5487
|
-
* Result data.
|
|
5488
|
-
*/
|
|
5489
|
-
export interface SearchResultDataDc {
|
|
5490
|
-
/** Name of the attribute. */
|
|
5491
|
-
attributeName?: string;
|
|
5492
|
-
/** Attribute value. */
|
|
5493
|
-
value?: string;
|
|
5494
|
-
/** Row id. */
|
|
5495
|
-
id?: string;
|
|
5496
|
-
}
|
|
5497
|
-
/**
|
|
5498
|
-
* Universal search result.
|
|
5499
|
-
*/
|
|
5500
|
-
export interface SearchResultDc {
|
|
5501
|
-
/** Name of the layer. */
|
|
5502
|
-
name?: string;
|
|
5503
|
-
/** Id of the task. */
|
|
5504
|
-
taskId?: string;
|
|
5505
|
-
/** Found results. */
|
|
5506
|
-
results?: SearchResultDataDc[];
|
|
5507
|
-
/**
|
|
5508
|
-
* Count results.
|
|
5509
|
-
* @format int32
|
|
5510
|
-
*/
|
|
5511
|
-
count?: number;
|
|
5512
|
-
}
|
|
5513
|
-
/**
|
|
5514
|
-
* The result of a server task step execution.
|
|
5515
|
-
*/
|
|
5516
|
-
export declare type SearchStepResultDc = BaseStepResultDc & {
|
|
5517
|
-
layerName?: string | null;
|
|
5518
|
-
foundObjects?: number;
|
|
5519
|
-
};
|
|
5520
|
-
/**
|
|
5521
|
-
* Suggest user information.
|
|
5522
|
-
*/
|
|
5523
|
-
export interface SearchedUserDc {
|
|
5524
|
-
/** Username. */
|
|
5525
|
-
username?: string;
|
|
5526
|
-
/** Own user role. */
|
|
5527
|
-
ownRole?: string;
|
|
5528
|
-
/** Photo. */
|
|
5529
|
-
photo?: string;
|
|
5530
|
-
}
|
|
5531
|
-
/**
|
|
5532
|
-
* General information about the server.
|
|
5533
|
-
*/
|
|
5534
|
-
export interface ServerInfoDc {
|
|
5535
|
-
/** The name of the server. */
|
|
5536
|
-
serverName?: string;
|
|
5537
|
-
/** The name of the running application. */
|
|
5538
|
-
application?: string;
|
|
5539
|
-
/** Version number of the server build. */
|
|
5540
|
-
version?: string;
|
|
5541
|
-
/** Information about the available routing providers. */
|
|
5542
|
-
routingProviders?: RoutingProviderInfoDc[];
|
|
5203
|
+
export interface ServerInfoDc {
|
|
5204
|
+
/** The name of the server. */
|
|
5205
|
+
serverName?: string;
|
|
5206
|
+
/** The name of the running application. */
|
|
5207
|
+
application?: string;
|
|
5208
|
+
/** Version number of the server build. */
|
|
5209
|
+
version?: string;
|
|
5210
|
+
/** Information about the available routing providers. */
|
|
5211
|
+
routingProviders?: RoutingProviderInfoDc[];
|
|
5543
5212
|
/**
|
|
5544
5213
|
* Date and time when the server was started.
|
|
5545
5214
|
* @format date-time
|
|
@@ -5651,7 +5320,7 @@ export declare type ServiceInfoDc = ResourceInfoDc & {
|
|
|
5651
5320
|
geometryType: GeometryType;
|
|
5652
5321
|
objectCount?: number;
|
|
5653
5322
|
categories?: string[] | null;
|
|
5654
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc |
|
|
5323
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc | null;
|
|
5655
5324
|
};
|
|
5656
5325
|
/**
|
|
5657
5326
|
* List of the services in service manager.
|
|
@@ -5902,6 +5571,19 @@ export declare type SolidFillBrushDc = FillBrushDc & {
|
|
|
5902
5571
|
export declare type SolidStrokeBrushDc = StrokeBrushDc & {
|
|
5903
5572
|
type?: string | null;
|
|
5904
5573
|
};
|
|
5574
|
+
/**
|
|
5575
|
+
* SpTaskMethodConfiguration.
|
|
5576
|
+
*/
|
|
5577
|
+
export interface SpTaskMethodConfiguration {
|
|
5578
|
+
/** Gets or sets method. */
|
|
5579
|
+
method?: string;
|
|
5580
|
+
/** Gets or sets description. */
|
|
5581
|
+
description?: string;
|
|
5582
|
+
/** Parameters. */
|
|
5583
|
+
parameters?: TaskParameter[];
|
|
5584
|
+
/** TaskReturnType. */
|
|
5585
|
+
return?: TaskReturnType;
|
|
5586
|
+
}
|
|
5905
5587
|
/**
|
|
5906
5588
|
* Empty square ending.
|
|
5907
5589
|
*/
|
|
@@ -6084,14 +5766,6 @@ export interface StyleDc {
|
|
|
6084
5766
|
/** If set true style will not be rendered. */
|
|
6085
5767
|
disabled?: boolean;
|
|
6086
5768
|
}
|
|
6087
|
-
/**
|
|
6088
|
-
* Configuration of a styled layer service. This service type is a visual feature layer,
|
|
6089
|
-
that overrides the base layer styling with its' own style.
|
|
6090
|
-
*/
|
|
6091
|
-
export declare type StyledLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
6092
|
-
style: StyleDc;
|
|
6093
|
-
baseServiceName: string;
|
|
6094
|
-
};
|
|
6095
5769
|
/**
|
|
6096
5770
|
* SubTaskSettingsDto.
|
|
6097
5771
|
*/
|
|
@@ -6238,15 +5912,6 @@ export declare type TableTaskDataStorageDc = BaseTaskDataStorageDc & {
|
|
|
6238
5912
|
tableName: string;
|
|
6239
5913
|
type?: string | null;
|
|
6240
5914
|
};
|
|
6241
|
-
/**
|
|
6242
|
-
* Provides data contract of `TagInfo`/>.
|
|
6243
|
-
*/
|
|
6244
|
-
export interface TagInfoDc {
|
|
6245
|
-
/** Name of the tag. */
|
|
6246
|
-
name?: string;
|
|
6247
|
-
/** If sets true. */
|
|
6248
|
-
isSystem?: boolean;
|
|
6249
|
-
}
|
|
6250
5915
|
/**
|
|
6251
5916
|
* Tags filter.
|
|
6252
5917
|
*/
|
|
@@ -6259,6 +5924,102 @@ export interface TagsFilterDto {
|
|
|
6259
5924
|
*/
|
|
6260
5925
|
useAnd?: boolean;
|
|
6261
5926
|
}
|
|
5927
|
+
/**
|
|
5928
|
+
* TaskConfiguration.
|
|
5929
|
+
*/
|
|
5930
|
+
export interface TaskConfiguration {
|
|
5931
|
+
/**
|
|
5932
|
+
* TaskPrototypeSubType.
|
|
5933
|
+
*
|
|
5934
|
+
* SpTask
|
|
5935
|
+
*
|
|
5936
|
+
* PythonTask
|
|
5937
|
+
*/
|
|
5938
|
+
taskResourceSubType?: TaskResourceSubType;
|
|
5939
|
+
/** TaskType. */
|
|
5940
|
+
taskType?: string;
|
|
5941
|
+
/** Description. */
|
|
5942
|
+
description?: string;
|
|
5943
|
+
/** ImportMethods. */
|
|
5944
|
+
importMethods?: string[];
|
|
5945
|
+
/** UserConfiguration. */
|
|
5946
|
+
userConfiguration?: TaskMethodConfiguration[];
|
|
5947
|
+
/** DefaultConfiguration. */
|
|
5948
|
+
defaultConfiguration?: TaskMethodConfiguration[];
|
|
5949
|
+
}
|
|
5950
|
+
/**
|
|
5951
|
+
* TaskMethodConfiguration.
|
|
5952
|
+
*/
|
|
5953
|
+
export interface TaskMethodConfiguration {
|
|
5954
|
+
/** Gets or sets description. */
|
|
5955
|
+
description?: string;
|
|
5956
|
+
/** Parameters. */
|
|
5957
|
+
parameters?: TaskParameter[];
|
|
5958
|
+
/** TaskReturnType. */
|
|
5959
|
+
return?: TaskReturnType;
|
|
5960
|
+
}
|
|
5961
|
+
/**
|
|
5962
|
+
* TaskParameter.
|
|
5963
|
+
*/
|
|
5964
|
+
export interface TaskParameter {
|
|
5965
|
+
/** Name. */
|
|
5966
|
+
name?: string;
|
|
5967
|
+
/** Gets or sets description. */
|
|
5968
|
+
description?: string;
|
|
5969
|
+
/**
|
|
5970
|
+
*
|
|
5971
|
+
*
|
|
5972
|
+
* Integer
|
|
5973
|
+
*
|
|
5974
|
+
* Double
|
|
5975
|
+
*
|
|
5976
|
+
* String
|
|
5977
|
+
*
|
|
5978
|
+
* Extent
|
|
5979
|
+
*
|
|
5980
|
+
* Geometry
|
|
5981
|
+
*
|
|
5982
|
+
* IntergerArray
|
|
5983
|
+
*
|
|
5984
|
+
* DoubleArray
|
|
5985
|
+
*
|
|
5986
|
+
* StringArray
|
|
5987
|
+
*
|
|
5988
|
+
* Boolean
|
|
5989
|
+
*
|
|
5990
|
+
* SourceEql
|
|
5991
|
+
*
|
|
5992
|
+
* Layer
|
|
5993
|
+
*
|
|
5994
|
+
* Table
|
|
5995
|
+
*
|
|
5996
|
+
* Folder
|
|
5997
|
+
*
|
|
5998
|
+
* Json
|
|
5999
|
+
*
|
|
6000
|
+
* Expression
|
|
6001
|
+
*
|
|
6002
|
+
* Expressions
|
|
6003
|
+
*/
|
|
6004
|
+
type?: WorkerSettingsFieldType;
|
|
6005
|
+
/** Lookup values. */
|
|
6006
|
+
lookupValues?: Record<string, string | null>;
|
|
6007
|
+
/** Default value. */
|
|
6008
|
+
default?: any;
|
|
6009
|
+
/** TaskParameterRange. */
|
|
6010
|
+
range?: TaskParameterRange;
|
|
6011
|
+
/** Nullable. */
|
|
6012
|
+
nullable?: boolean;
|
|
6013
|
+
}
|
|
6014
|
+
/**
|
|
6015
|
+
* TaskParameterRange.
|
|
6016
|
+
*/
|
|
6017
|
+
export interface TaskParameterRange {
|
|
6018
|
+
/** Name. */
|
|
6019
|
+
min?: any;
|
|
6020
|
+
/** Name. */
|
|
6021
|
+
max?: any;
|
|
6022
|
+
}
|
|
6262
6023
|
/**
|
|
6263
6024
|
* Base class for server tasks descriptions.
|
|
6264
6025
|
*/
|
|
@@ -6300,6 +6061,105 @@ export interface TaskPrototypeDto {
|
|
|
6300
6061
|
/** Schedule. */
|
|
6301
6062
|
schedule?: string;
|
|
6302
6063
|
}
|
|
6064
|
+
/**
|
|
6065
|
+
* TaskPythonResourceUpdateDto.
|
|
6066
|
+
*/
|
|
6067
|
+
export interface TaskPythonResourceUpdateDto {
|
|
6068
|
+
/** Configurations. */
|
|
6069
|
+
configurations?: PythonTaskMethodConfiguration[];
|
|
6070
|
+
}
|
|
6071
|
+
/**
|
|
6072
|
+
* TaskResourceCreateDto.
|
|
6073
|
+
*/
|
|
6074
|
+
export interface TaskResourceCreateDto {
|
|
6075
|
+
/** SystemName. */
|
|
6076
|
+
systemName?: string;
|
|
6077
|
+
/**
|
|
6078
|
+
* TaskPrototypeSubType.
|
|
6079
|
+
*
|
|
6080
|
+
* SpTask
|
|
6081
|
+
*
|
|
6082
|
+
* PythonTask
|
|
6083
|
+
*/
|
|
6084
|
+
subType?: TaskResourceSubType;
|
|
6085
|
+
/** Task type. */
|
|
6086
|
+
taskType?: string;
|
|
6087
|
+
/** Import methods. */
|
|
6088
|
+
importMethods?: string[];
|
|
6089
|
+
/** Name. */
|
|
6090
|
+
name?: string;
|
|
6091
|
+
/** ParentId. */
|
|
6092
|
+
parentId?: string;
|
|
6093
|
+
/** Description. */
|
|
6094
|
+
description?: string;
|
|
6095
|
+
/** Tags. */
|
|
6096
|
+
tags?: string[];
|
|
6097
|
+
}
|
|
6098
|
+
/**
|
|
6099
|
+
* TaskPrototypeSubType.
|
|
6100
|
+
|
|
6101
|
+
SpTask
|
|
6102
|
+
|
|
6103
|
+
PythonTask
|
|
6104
|
+
*/
|
|
6105
|
+
export declare enum TaskResourceSubType {
|
|
6106
|
+
SpTask = "SpTask",
|
|
6107
|
+
PythonTask = "PythonTask"
|
|
6108
|
+
}
|
|
6109
|
+
/**
|
|
6110
|
+
* TaskReturnType.
|
|
6111
|
+
*/
|
|
6112
|
+
export interface TaskReturnType {
|
|
6113
|
+
/** Gets or sets description. */
|
|
6114
|
+
description?: string;
|
|
6115
|
+
/**
|
|
6116
|
+
*
|
|
6117
|
+
*
|
|
6118
|
+
* Integer
|
|
6119
|
+
*
|
|
6120
|
+
* Double
|
|
6121
|
+
*
|
|
6122
|
+
* String
|
|
6123
|
+
*
|
|
6124
|
+
* Extent
|
|
6125
|
+
*
|
|
6126
|
+
* Geometry
|
|
6127
|
+
*
|
|
6128
|
+
* IntergerArray
|
|
6129
|
+
*
|
|
6130
|
+
* DoubleArray
|
|
6131
|
+
*
|
|
6132
|
+
* StringArray
|
|
6133
|
+
*
|
|
6134
|
+
* Boolean
|
|
6135
|
+
*
|
|
6136
|
+
* SourceEql
|
|
6137
|
+
*
|
|
6138
|
+
* Layer
|
|
6139
|
+
*
|
|
6140
|
+
* Table
|
|
6141
|
+
*
|
|
6142
|
+
* Folder
|
|
6143
|
+
*
|
|
6144
|
+
* Json
|
|
6145
|
+
*
|
|
6146
|
+
* Expression
|
|
6147
|
+
*
|
|
6148
|
+
* Expressions
|
|
6149
|
+
*/
|
|
6150
|
+
type?: WorkerSettingsFieldType;
|
|
6151
|
+
/** Name. */
|
|
6152
|
+
default?: any;
|
|
6153
|
+
/** Name. */
|
|
6154
|
+
nullable?: boolean;
|
|
6155
|
+
}
|
|
6156
|
+
/**
|
|
6157
|
+
* TaskSpResourceUpdateDto.
|
|
6158
|
+
*/
|
|
6159
|
+
export interface TaskSpResourceUpdateDto {
|
|
6160
|
+
/** Configurations. */
|
|
6161
|
+
configurations?: SpTaskMethodConfiguration[];
|
|
6162
|
+
}
|
|
6303
6163
|
/**
|
|
6304
6164
|
* Localization contains fields that should be localized on printing template.
|
|
6305
6165
|
*/
|
|
@@ -6448,7 +6308,7 @@ export interface TileCatalogServiceInfoDc {
|
|
|
6448
6308
|
/** The category of the service. */
|
|
6449
6309
|
categories?: string[];
|
|
6450
6310
|
/** Configuration of the service. */
|
|
6451
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc
|
|
6311
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
6452
6312
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
6453
6313
|
name: string;
|
|
6454
6314
|
/** Resource alias. */
|
|
@@ -6631,7 +6491,7 @@ export interface TileServiceInfoDc {
|
|
|
6631
6491
|
/** The category of the service. */
|
|
6632
6492
|
categories?: string[];
|
|
6633
6493
|
/** Configuration of the service. */
|
|
6634
|
-
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc
|
|
6494
|
+
configuration?: LinearServiceConfigurationDc | LocalTileServiceConfigurationDc | PbfServiceConfigurationDc | PostgresLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
|
|
6635
6495
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
6636
6496
|
name: string;
|
|
6637
6497
|
/** Resource alias. */
|
|
@@ -6688,9 +6548,7 @@ export interface TileServiceInfoDc {
|
|
|
6688
6548
|
*/
|
|
6689
6549
|
export interface TokenRequestDc {
|
|
6690
6550
|
/**
|
|
6691
|
-
*
|
|
6692
|
-
* owner's authorization (to access its protected resources) used by the
|
|
6693
|
-
* client to obtain an access token.
|
|
6551
|
+
*
|
|
6694
6552
|
*
|
|
6695
6553
|
* authorization_code
|
|
6696
6554
|
*
|
|
@@ -6762,6 +6620,8 @@ export interface UpdateRoleDc {
|
|
|
6762
6620
|
name: string;
|
|
6763
6621
|
/** Description. */
|
|
6764
6622
|
description?: string;
|
|
6623
|
+
/** Alias. */
|
|
6624
|
+
alias?: string;
|
|
6765
6625
|
}
|
|
6766
6626
|
/**
|
|
6767
6627
|
* Symbol category data contract.
|
|
@@ -6850,6 +6710,8 @@ export interface UpdateUserDc {
|
|
|
6850
6710
|
is_email_confirmed?: boolean;
|
|
6851
6711
|
/** Namespace. */
|
|
6852
6712
|
namespace?: string;
|
|
6713
|
+
/** Emoji. */
|
|
6714
|
+
emoji?: string;
|
|
6853
6715
|
/** Username. */
|
|
6854
6716
|
username?: string;
|
|
6855
6717
|
/**
|
|
@@ -7424,6 +7286,8 @@ export interface CreateFilePayload {
|
|
|
7424
7286
|
isTemporary?: boolean;
|
|
7425
7287
|
/** A set of tags. */
|
|
7426
7288
|
tags?: string[];
|
|
7289
|
+
/** File icon. */
|
|
7290
|
+
icon?: string;
|
|
7427
7291
|
}
|
|
7428
7292
|
export declare type SetPermissionsPayload = ResourceAclDc[];
|
|
7429
7293
|
export interface GetConfigurationsListParams {
|
|
@@ -7707,7 +7571,6 @@ export interface GetLayersListParams {
|
|
|
7707
7571
|
/** ACL in string format `role:permissions;role:permissions`. */
|
|
7708
7572
|
acl?: string;
|
|
7709
7573
|
}
|
|
7710
|
-
export declare type SetPermissionsBatchPayload = ResourceAclDc[];
|
|
7711
7574
|
export interface DeleteResourcesParams {
|
|
7712
7575
|
/** Resource names. */
|
|
7713
7576
|
names?: string[];
|
|
@@ -7721,11 +7584,11 @@ export interface GetLayersInfoParams {
|
|
|
7721
7584
|
/**
|
|
7722
7585
|
* Configuration for the proxy service.
|
|
7723
7586
|
*/
|
|
7724
|
-
export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc;
|
|
7587
|
+
export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PythonServiceConfigurationDc;
|
|
7725
7588
|
/**
|
|
7726
7589
|
* Configuration for the proxy service.
|
|
7727
7590
|
*/
|
|
7728
|
-
export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc;
|
|
7591
|
+
export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PythonServiceConfigurationDc;
|
|
7729
7592
|
export interface GetFeatures1Params {
|
|
7730
7593
|
/** Click geometry. */
|
|
7731
7594
|
ewktGeometry?: string;
|
|
@@ -7848,6 +7711,8 @@ export interface SubtractParams {
|
|
|
7848
7711
|
export interface GetTilesLayerImageParams {
|
|
7849
7712
|
/** Tile sets to render. */
|
|
7850
7713
|
ids?: number[];
|
|
7714
|
+
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
7715
|
+
dataFilterId?: string;
|
|
7851
7716
|
/** Full name of the layer. */
|
|
7852
7717
|
name: string;
|
|
7853
7718
|
/**
|
|
@@ -7866,11 +7731,68 @@ export interface GetTilesLayerImageParams {
|
|
|
7866
7731
|
*/
|
|
7867
7732
|
z: number;
|
|
7868
7733
|
}
|
|
7734
|
+
export interface GetTilesLayerImage1Params {
|
|
7735
|
+
/** Tile sets to render. */
|
|
7736
|
+
ids?: number[];
|
|
7737
|
+
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
7738
|
+
dataFilterId?: string;
|
|
7739
|
+
/** Full name of the layer. */
|
|
7740
|
+
name: string;
|
|
7741
|
+
/**
|
|
7742
|
+
* X.
|
|
7743
|
+
* @format int32
|
|
7744
|
+
*/
|
|
7745
|
+
x: number;
|
|
7746
|
+
/**
|
|
7747
|
+
* Y.
|
|
7748
|
+
* @format int32
|
|
7749
|
+
*/
|
|
7750
|
+
y: number;
|
|
7751
|
+
/**
|
|
7752
|
+
* Z.
|
|
7753
|
+
* @format int32
|
|
7754
|
+
*/
|
|
7755
|
+
z: number;
|
|
7756
|
+
/** Specifies the format of the returned tile. */
|
|
7757
|
+
format: string;
|
|
7758
|
+
}
|
|
7759
|
+
export interface GetTilesLayerImageWithFormatAndDpiParams {
|
|
7760
|
+
/** Tile sets to render. */
|
|
7761
|
+
ids?: number[];
|
|
7762
|
+
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
7763
|
+
dataFilterId?: string;
|
|
7764
|
+
/** Full name of the layer. */
|
|
7765
|
+
name: string;
|
|
7766
|
+
/**
|
|
7767
|
+
* X.
|
|
7768
|
+
* @format int32
|
|
7769
|
+
*/
|
|
7770
|
+
x: number;
|
|
7771
|
+
/**
|
|
7772
|
+
* Y.
|
|
7773
|
+
* @format int32
|
|
7774
|
+
*/
|
|
7775
|
+
y: number;
|
|
7776
|
+
/**
|
|
7777
|
+
* Z.
|
|
7778
|
+
* @format int32
|
|
7779
|
+
*/
|
|
7780
|
+
z: number;
|
|
7781
|
+
/**
|
|
7782
|
+
* Image dpi.
|
|
7783
|
+
* @format float
|
|
7784
|
+
*/
|
|
7785
|
+
dpi: number;
|
|
7786
|
+
/** Specifies the format of the returned tile. */
|
|
7787
|
+
format: string;
|
|
7788
|
+
}
|
|
7869
7789
|
export interface GetLayerImageParams {
|
|
7870
7790
|
/** Extent to render. */
|
|
7871
7791
|
extent?: number[];
|
|
7872
7792
|
/** Image size. */
|
|
7873
7793
|
size?: number[];
|
|
7794
|
+
/** Specifies the format of the returned tile. */
|
|
7795
|
+
format?: string;
|
|
7874
7796
|
/**
|
|
7875
7797
|
* Spatial reference of the extent. If not specified, the layer spatial reference is assumed.
|
|
7876
7798
|
* @format int32
|
|
@@ -8128,7 +8050,7 @@ export interface ValidateExpressionParams {
|
|
|
8128
8050
|
/** Layer name. */
|
|
8129
8051
|
layerName: string;
|
|
8130
8052
|
}
|
|
8131
|
-
export interface
|
|
8053
|
+
export interface GetRasterMetaParams2 {
|
|
8132
8054
|
/**
|
|
8133
8055
|
* Min value for build histogram.
|
|
8134
8056
|
* @format double
|
|
@@ -8147,53 +8069,6 @@ export interface GetRasterMetaParams6 {
|
|
|
8147
8069
|
*/
|
|
8148
8070
|
id: number;
|
|
8149
8071
|
}
|
|
8150
|
-
export interface SetPreviewPayload {
|
|
8151
|
-
/** @format binary */
|
|
8152
|
-
file?: File;
|
|
8153
|
-
}
|
|
8154
|
-
export interface GetNamespacesParams {
|
|
8155
|
-
/** String filter for the namespace (uses % and _ wild cards like SQL). */
|
|
8156
|
-
filter?: string;
|
|
8157
|
-
/**
|
|
8158
|
-
* First index in the list to get.
|
|
8159
|
-
* @format int32
|
|
8160
|
-
*/
|
|
8161
|
-
offset?: number;
|
|
8162
|
-
/**
|
|
8163
|
-
* Max number of entries in the returned list.
|
|
8164
|
-
* @format int32
|
|
8165
|
-
*/
|
|
8166
|
-
limit?: number;
|
|
8167
|
-
}
|
|
8168
|
-
export interface CreateNamespaceParams {
|
|
8169
|
-
/** Name of the user to create the namespace for. This user will be the owner of the namespace. */
|
|
8170
|
-
userName: string;
|
|
8171
|
-
/**
|
|
8172
|
-
* If false, the name of the created namespace will be exactly the name of the user. If set to true,
|
|
8173
|
-
* the server will try to use the user name as the namespace name, but if the name is occupied, it will
|
|
8174
|
-
* find a close free name for the namespace, create it and return it as the result of the operation.
|
|
8175
|
-
*/
|
|
8176
|
-
adjustName?: boolean;
|
|
8177
|
-
}
|
|
8178
|
-
export interface GetRoutesParams {
|
|
8179
|
-
/** if true, the response will contain the geometry of the route. */
|
|
8180
|
-
getGeometry?: boolean;
|
|
8181
|
-
/**
|
|
8182
|
-
* if true, the response will contain the detailed description of the route segments
|
|
8183
|
-
* .
|
|
8184
|
-
*/
|
|
8185
|
-
getSegments?: boolean;
|
|
8186
|
-
/**
|
|
8187
|
-
* Max distance in meters from the input point to a road on the graph.
|
|
8188
|
-
* If there is no road close enough to the input point, a route will not be build.
|
|
8189
|
-
* @format float
|
|
8190
|
-
*/
|
|
8191
|
-
snappingDistance?: number;
|
|
8192
|
-
/** Profile. */
|
|
8193
|
-
profile: string;
|
|
8194
|
-
/** Coordinates of the points to build the routes between. */
|
|
8195
|
-
coordinates: string;
|
|
8196
|
-
}
|
|
8197
8072
|
export interface SubscribeOperationParams {
|
|
8198
8073
|
/** Notification tag. */
|
|
8199
8074
|
tag?: string;
|
|
@@ -8246,7 +8121,6 @@ export interface GetProjectsListParams {
|
|
|
8246
8121
|
/** Filter layers by set of tags. */
|
|
8247
8122
|
tags?: string[];
|
|
8248
8123
|
}
|
|
8249
|
-
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
8250
8124
|
export interface DeleteResourcesParams4 {
|
|
8251
8125
|
/** Resource names. */
|
|
8252
8126
|
names?: string[];
|
|
@@ -8264,26 +8138,6 @@ export interface GetProjectEnvelopeParams {
|
|
|
8264
8138
|
/** The name of the project. */
|
|
8265
8139
|
name: string;
|
|
8266
8140
|
}
|
|
8267
|
-
export interface SetPreviewBody {
|
|
8268
|
-
/** @format binary */
|
|
8269
|
-
file?: File;
|
|
8270
|
-
}
|
|
8271
|
-
export interface UpdatePythonConfigurationParams {
|
|
8272
|
-
/** ResourceId. */
|
|
8273
|
-
resourceId?: string;
|
|
8274
|
-
}
|
|
8275
|
-
export interface GetPythonConfigurationParams {
|
|
8276
|
-
/** ResourceId. */
|
|
8277
|
-
resourceId?: string;
|
|
8278
|
-
}
|
|
8279
|
-
export interface GetAutoConfigurationParams {
|
|
8280
|
-
/** ResourceId. */
|
|
8281
|
-
resourceId?: string;
|
|
8282
|
-
/** Script name. */
|
|
8283
|
-
scriptName?: string;
|
|
8284
|
-
/** Method name. */
|
|
8285
|
-
methodName?: string;
|
|
8286
|
-
}
|
|
8287
8141
|
export interface GetAllScriptMethodsParams {
|
|
8288
8142
|
/** ResourceId. */
|
|
8289
8143
|
resourceId?: string;
|
|
@@ -8297,6 +8151,14 @@ export interface RunScriptParams {
|
|
|
8297
8151
|
/** Method name. */
|
|
8298
8152
|
methodName?: string;
|
|
8299
8153
|
}
|
|
8154
|
+
export interface GetTokensListParams {
|
|
8155
|
+
onlyValid?: boolean;
|
|
8156
|
+
/** @format int32 */
|
|
8157
|
+
limit?: number;
|
|
8158
|
+
/** @format int32 */
|
|
8159
|
+
offset?: number;
|
|
8160
|
+
username: string;
|
|
8161
|
+
}
|
|
8300
8162
|
export interface GetTaskPrototypesParams {
|
|
8301
8163
|
/** Username. */
|
|
8302
8164
|
Username?: string;
|
|
@@ -8336,44 +8198,14 @@ export interface GetTasksForPrototypeParams {
|
|
|
8336
8198
|
*/
|
|
8337
8199
|
id: string;
|
|
8338
8200
|
}
|
|
8339
|
-
export
|
|
8340
|
-
|
|
8341
|
-
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
|
-
storageName: string;
|
|
8345
|
-
}
|
|
8346
|
-
export interface CreateResourcePayload {
|
|
8347
|
-
/** @format binary */
|
|
8348
|
-
file?: File;
|
|
8349
|
-
}
|
|
8350
|
-
export interface RemoveObjectFromStorageParams {
|
|
8351
|
-
/** Object name. */
|
|
8352
|
-
name?: string;
|
|
8353
|
-
/** S3 storage name. */
|
|
8354
|
-
storageName: string;
|
|
8355
|
-
}
|
|
8356
|
-
export interface GetUrlParams {
|
|
8357
|
-
/** Object name. */
|
|
8358
|
-
fileName?: string;
|
|
8359
|
-
/**
|
|
8360
|
-
* Expiry in seconds. Default expiry is set to 1 days.
|
|
8361
|
-
* @format int32
|
|
8362
|
-
*/
|
|
8363
|
-
expires?: number;
|
|
8364
|
-
/** S3 storage name. */
|
|
8365
|
-
storageName: string;
|
|
8366
|
-
}
|
|
8367
|
-
export interface GetStorageObjectsParams {
|
|
8368
|
-
/** Path. */
|
|
8369
|
-
path?: string;
|
|
8370
|
-
/** S3 storage name. */
|
|
8371
|
-
storageName: string;
|
|
8372
|
-
}
|
|
8373
|
-
export interface CreateStorageParams {
|
|
8374
|
-
/** S3 storage name. */
|
|
8375
|
-
storageName?: string;
|
|
8201
|
+
export interface GetTaskResourceParams {
|
|
8202
|
+
/** Update default configuration. */
|
|
8203
|
+
updateDefault?: boolean;
|
|
8204
|
+
/** Id. */
|
|
8205
|
+
id: string;
|
|
8376
8206
|
}
|
|
8207
|
+
export declare type CopyResourcesPayload = CopyResourceDc[];
|
|
8208
|
+
export declare type SetPoliciesPayload = Record<string, PolicyDc[]>;
|
|
8377
8209
|
export interface FindUserByNameByRolesParams {
|
|
8378
8210
|
/** Roles. */
|
|
8379
8211
|
roles?: string[];
|
|
@@ -8407,6 +8239,8 @@ export interface GetPolicyListParams {
|
|
|
8407
8239
|
* MaxEqlQueryParametersValues
|
|
8408
8240
|
*/
|
|
8409
8241
|
type?: PolicyType;
|
|
8242
|
+
/** Use role the policy is applied to. */
|
|
8243
|
+
roleName?: string;
|
|
8410
8244
|
}
|
|
8411
8245
|
export interface RemovePolicyParams {
|
|
8412
8246
|
/**
|
|
@@ -8432,34 +8266,6 @@ export interface RemovePolicyParams {
|
|
|
8432
8266
|
/** Use role the policy is applied to. */
|
|
8433
8267
|
role?: string;
|
|
8434
8268
|
}
|
|
8435
|
-
export interface DownloadFileParams {
|
|
8436
|
-
/** Id of the file in the temporary static storage. */
|
|
8437
|
-
fileName?: string;
|
|
8438
|
-
}
|
|
8439
|
-
export interface UploadFilePayload {
|
|
8440
|
-
/** Name of the uploading file. */
|
|
8441
|
-
fileName?: string;
|
|
8442
|
-
/** Url to upload file. */
|
|
8443
|
-
url?: string;
|
|
8444
|
-
/**
|
|
8445
|
-
* Id of the tile in the session static storage.
|
|
8446
|
-
* @format binary
|
|
8447
|
-
*/
|
|
8448
|
-
file?: File;
|
|
8449
|
-
/**
|
|
8450
|
-
* Rewrite flag
|
|
8451
|
-
* If true - rewrite file if exist. If false - return error.
|
|
8452
|
-
*/
|
|
8453
|
-
rewrite?: boolean;
|
|
8454
|
-
}
|
|
8455
|
-
export interface DeleteFileParams {
|
|
8456
|
-
/** File id to delete. */
|
|
8457
|
-
fileid?: string;
|
|
8458
|
-
}
|
|
8459
|
-
export interface GetFileInfoParams {
|
|
8460
|
-
/** Id of the file in the temporary static storage. */
|
|
8461
|
-
url?: string;
|
|
8462
|
-
}
|
|
8463
8269
|
export interface StatisticsDbParams {
|
|
8464
8270
|
/** Layer name. */
|
|
8465
8271
|
name: string;
|
|
@@ -8514,7 +8320,7 @@ export interface StatisticsDbParams {
|
|
|
8514
8320
|
*/
|
|
8515
8321
|
types?: AggregationFunction[];
|
|
8516
8322
|
}
|
|
8517
|
-
export interface
|
|
8323
|
+
export interface ClassifyParams7 {
|
|
8518
8324
|
/** Layer name. */
|
|
8519
8325
|
name: string;
|
|
8520
8326
|
/** Attribute name. */
|
|
@@ -8646,7 +8452,10 @@ export interface GetTableListParams {
|
|
|
8646
8452
|
/** All available permissions list. */
|
|
8647
8453
|
acl?: string;
|
|
8648
8454
|
}
|
|
8649
|
-
export
|
|
8455
|
+
export interface DeleteResourcesParams7 {
|
|
8456
|
+
/** Resource names. */
|
|
8457
|
+
names?: string[];
|
|
8458
|
+
}
|
|
8650
8459
|
export interface GetTablesInfoParams {
|
|
8651
8460
|
/** Table names. */
|
|
8652
8461
|
tableNames?: string[];
|
|
@@ -8707,42 +8516,6 @@ export interface MapTableParams {
|
|
|
8707
8516
|
/** Type of the resource. Default type os Table. */
|
|
8708
8517
|
type?: string;
|
|
8709
8518
|
}
|
|
8710
|
-
export interface SetPreviewInput {
|
|
8711
|
-
/** @format binary */
|
|
8712
|
-
file?: File;
|
|
8713
|
-
}
|
|
8714
|
-
export interface GetAllParams {
|
|
8715
|
-
/** Text filter. */
|
|
8716
|
-
filter?: string;
|
|
8717
|
-
/**
|
|
8718
|
-
* Skip objects amount.
|
|
8719
|
-
* @format int32
|
|
8720
|
-
*/
|
|
8721
|
-
offset?: number;
|
|
8722
|
-
/**
|
|
8723
|
-
* Limit objects in response.
|
|
8724
|
-
* @format int32
|
|
8725
|
-
*/
|
|
8726
|
-
limit?: number;
|
|
8727
|
-
}
|
|
8728
|
-
export interface SearchResultDcGetSearchResultParams {
|
|
8729
|
-
/** Results filter. */
|
|
8730
|
-
filter?: string;
|
|
8731
|
-
/**
|
|
8732
|
-
* Offset result objects.
|
|
8733
|
-
* @format int32
|
|
8734
|
-
*/
|
|
8735
|
-
offset?: number;
|
|
8736
|
-
/**
|
|
8737
|
-
* Limit of result objects.
|
|
8738
|
-
* @format int32
|
|
8739
|
-
*/
|
|
8740
|
-
limit?: number;
|
|
8741
|
-
/** Task id. */
|
|
8742
|
-
taskId: string;
|
|
8743
|
-
/** Name of the layer. */
|
|
8744
|
-
layerName: string;
|
|
8745
|
-
}
|
|
8746
8519
|
export interface GetVectorTileParams {
|
|
8747
8520
|
/** Include all feature attributes. */
|
|
8748
8521
|
withAttributes?: boolean;
|
|
@@ -8800,7 +8573,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
8800
8573
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
8801
8574
|
AcceptFormats?: string[];
|
|
8802
8575
|
}
|
|
8803
|
-
export interface
|
|
8576
|
+
export interface GetCapabilitiesParams3 {
|
|
8804
8577
|
/** Output format of service metadata. */
|
|
8805
8578
|
Format?: string;
|
|
8806
8579
|
/** Must be WMS. */
|