@evergis/api 3.0.88 → 3.0.89
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__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +51 -3
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CreateProjectPayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CreateProjectPayload, DeleteResourcesParams3, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, UpdateProjectPayload } 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:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams3): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams1, 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:
|
|
30
|
+
classify(query: ClassifyParams1): Promise<ClassifyDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams5, DeleteTableDataParams, FileUploadResponse, GetTableDataParams, GetTableListParams, GetUniqueDataRowsParams, IListResponse, ListResponseIEnumerable1, MapRemoteTableParams, MapRemoteTablePayload, MapTableParams, MapTablePayload, MapViewParams, MapViewPayload, ResourceDependenciesDc, SetPermissionsBatchInput, SetPermissionsInput, SetPreviewInput, TableListDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTablePayload, 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:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams9, 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:
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams9): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -631,6 +631,8 @@ export interface CirclePointSymbolDc {
|
|
|
631
631
|
* as an object with a "type" parameter specified.
|
|
632
632
|
*/
|
|
633
633
|
angle?: ParameterDcDouble;
|
|
634
|
+
/** If set true symbol will not be rendered. */
|
|
635
|
+
disabled?: boolean;
|
|
634
636
|
}
|
|
635
637
|
/**
|
|
636
638
|
* Describes classification methods.
|
|
@@ -921,6 +923,8 @@ export interface CompositeSymbolDc {
|
|
|
921
923
|
type?: string;
|
|
922
924
|
/** Child symbols list. */
|
|
923
925
|
childSymbols?: SymbolDc[];
|
|
926
|
+
/** If set true symbol will not be rendered. */
|
|
927
|
+
disabled?: boolean;
|
|
924
928
|
}
|
|
925
929
|
/**
|
|
926
930
|
* Get configuration information.
|
|
@@ -1440,6 +1444,11 @@ export interface ExtendedProjectInfoDc {
|
|
|
1440
1444
|
content: ProjectConfigurationDc;
|
|
1441
1445
|
/** Sets true if project is shared. */
|
|
1442
1446
|
isShared?: boolean;
|
|
1447
|
+
/**
|
|
1448
|
+
* Count of the layers in project.
|
|
1449
|
+
* @format int32
|
|
1450
|
+
*/
|
|
1451
|
+
layersCount?: number;
|
|
1443
1452
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
1444
1453
|
name: string;
|
|
1445
1454
|
/** Resource alias. */
|
|
@@ -2249,6 +2258,8 @@ export interface ImagePointSymbolDc {
|
|
|
2249
2258
|
* as an object with a "type" parameter specified.
|
|
2250
2259
|
*/
|
|
2251
2260
|
angle?: ParameterDcDouble;
|
|
2261
|
+
/** If set true symbol will not be rendered. */
|
|
2262
|
+
disabled?: boolean;
|
|
2252
2263
|
}
|
|
2253
2264
|
/**
|
|
2254
2265
|
* Data schema of a file for import.
|
|
@@ -2373,6 +2384,8 @@ export interface LabelSymbolDc {
|
|
|
2373
2384
|
textBackground?: TextBackgroundDc;
|
|
2374
2385
|
/** Type of the symbol. */
|
|
2375
2386
|
type?: string;
|
|
2387
|
+
/** If set true symbol will not be rendered. */
|
|
2388
|
+
disabled?: boolean;
|
|
2376
2389
|
}
|
|
2377
2390
|
/**
|
|
2378
2391
|
* Information about the layer attributes and their configuration.
|
|
@@ -2833,6 +2846,8 @@ export interface MaskedImagePointSymbolDc {
|
|
|
2833
2846
|
* as an object with a "type" parameter specified.
|
|
2834
2847
|
*/
|
|
2835
2848
|
angle?: ParameterDcDouble;
|
|
2849
|
+
/** If set true symbol will not be rendered. */
|
|
2850
|
+
disabled?: boolean;
|
|
2836
2851
|
}
|
|
2837
2852
|
/**
|
|
2838
2853
|
* Base template model data contract.
|
|
@@ -2848,6 +2863,8 @@ export interface MultipointSymbolDc {
|
|
|
2848
2863
|
type?: string;
|
|
2849
2864
|
/** Point symbol that will be used to draw all the points. */
|
|
2850
2865
|
pointSymbol?: SymbolDc;
|
|
2866
|
+
/** If set true symbol will not be rendered. */
|
|
2867
|
+
disabled?: boolean;
|
|
2851
2868
|
}
|
|
2852
2869
|
/**
|
|
2853
2870
|
* Information about a namespace .
|
|
@@ -3096,6 +3113,8 @@ export interface PointLabelSymbolDc {
|
|
|
3096
3113
|
offset?: ParameterDcDouble[];
|
|
3097
3114
|
/** Specifies text background. */
|
|
3098
3115
|
textBackground?: TextBackgroundDc;
|
|
3116
|
+
/** If set true symbol will not be rendered. */
|
|
3117
|
+
disabled?: boolean;
|
|
3099
3118
|
}
|
|
3100
3119
|
export interface PolicyDc {
|
|
3101
3120
|
/**
|
|
@@ -3212,6 +3231,8 @@ export interface PolygonCenterLabelSymbolDc {
|
|
|
3212
3231
|
offset?: ParameterDcDouble[];
|
|
3213
3232
|
/** Specifies text background. */
|
|
3214
3233
|
textBackground?: TextBackgroundDc;
|
|
3234
|
+
/** If set true symbol will not be rendered. */
|
|
3235
|
+
disabled?: boolean;
|
|
3215
3236
|
}
|
|
3216
3237
|
/**
|
|
3217
3238
|
* Polygon geometry object definition.
|
|
@@ -3282,6 +3303,8 @@ export interface PolygonLabelSymbolDc {
|
|
|
3282
3303
|
offset?: ParameterDcDouble[];
|
|
3283
3304
|
/** Specifies text background. */
|
|
3284
3305
|
textBackground?: TextBackgroundDc;
|
|
3306
|
+
/** If set true symbol will not be rendered. */
|
|
3307
|
+
disabled?: boolean;
|
|
3285
3308
|
}
|
|
3286
3309
|
/**
|
|
3287
3310
|
* A simple polygon symbol.
|
|
@@ -3292,6 +3315,8 @@ export interface PolygonSymbolDc {
|
|
|
3292
3315
|
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
3293
3316
|
/** Specifies stroke style. */
|
|
3294
3317
|
fill?: BrushDc | FillBrushDc | IBrushDc;
|
|
3318
|
+
/** If set true symbol will not be rendered. */
|
|
3319
|
+
disabled?: boolean;
|
|
3295
3320
|
}
|
|
3296
3321
|
/**
|
|
3297
3322
|
* Polyline geometry object definition.
|
|
@@ -3381,6 +3406,8 @@ export interface PolylineLabelSymbolDc {
|
|
|
3381
3406
|
haloWidth?: number;
|
|
3382
3407
|
/** Specifies text background. */
|
|
3383
3408
|
textBackground?: TextBackgroundDc;
|
|
3409
|
+
/** If set true symbol will not be rendered. */
|
|
3410
|
+
disabled?: boolean;
|
|
3384
3411
|
}
|
|
3385
3412
|
/**
|
|
3386
3413
|
* The symbol that draws a feature as a square.
|
|
@@ -3391,6 +3418,8 @@ export interface PolylineSymbolDc {
|
|
|
3391
3418
|
stroke?: BrushDc | IBrushDc | StrokeBrushDc;
|
|
3392
3419
|
beginning?: ILineEndingDc;
|
|
3393
3420
|
ending?: ILineEndingDc;
|
|
3421
|
+
/** If set true symbol will not be rendered. */
|
|
3422
|
+
disabled?: boolean;
|
|
3394
3423
|
}
|
|
3395
3424
|
/**
|
|
3396
3425
|
* The position at the map in [X, Y] format.
|
|
@@ -3563,6 +3592,11 @@ export interface ProjectContentItemDc {
|
|
|
3563
3592
|
export interface ProjectInfoDc {
|
|
3564
3593
|
/** Sets true if project is shared. */
|
|
3565
3594
|
isShared?: boolean;
|
|
3595
|
+
/**
|
|
3596
|
+
* Count of the layers in project.
|
|
3597
|
+
* @format int32
|
|
3598
|
+
*/
|
|
3599
|
+
layersCount?: number;
|
|
3566
3600
|
/** Name of the resource including its namespaces (names of the service managers that contain this service). */
|
|
3567
3601
|
name: string;
|
|
3568
3602
|
/** Resource alias. */
|
|
@@ -3775,6 +3809,8 @@ export interface RasterSymbolDc {
|
|
|
3775
3809
|
* as an object with a "type" parameter specified.
|
|
3776
3810
|
*/
|
|
3777
3811
|
opacity?: ParameterDcDouble;
|
|
3812
|
+
/** If set true symbol will not be rendered. */
|
|
3813
|
+
disabled?: boolean;
|
|
3778
3814
|
}
|
|
3779
3815
|
export interface Rectangle2 {
|
|
3780
3816
|
/** @format double */
|
|
@@ -4518,6 +4554,8 @@ export interface SimplePolylineSymbolDc {
|
|
|
4518
4554
|
* of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
4519
4555
|
*/
|
|
4520
4556
|
endingSize?: LineEndingSize;
|
|
4557
|
+
/** If set true symbol will not be rendered. */
|
|
4558
|
+
disabled?: boolean;
|
|
4521
4559
|
}
|
|
4522
4560
|
/**
|
|
4523
4561
|
* User social network information.
|
|
@@ -4582,6 +4620,8 @@ export interface SquarePointSymbolDc {
|
|
|
4582
4620
|
strokeWidth?: ParameterDcDouble;
|
|
4583
4621
|
/** Offset of the square center from the geographic point. */
|
|
4584
4622
|
offset?: ParameterDcDouble[];
|
|
4623
|
+
/** If set true symbol will not be rendered. */
|
|
4624
|
+
disabled?: boolean;
|
|
4585
4625
|
}
|
|
4586
4626
|
/**
|
|
4587
4627
|
* Description of the temp file as a task data storage.
|
|
@@ -4739,6 +4779,8 @@ export interface StyleDc {
|
|
|
4739
4779
|
* @format double
|
|
4740
4780
|
*/
|
|
4741
4781
|
maxResolution?: number;
|
|
4782
|
+
/** If set true style will not be rendered. */
|
|
4783
|
+
disabled?: boolean;
|
|
4742
4784
|
}
|
|
4743
4785
|
/**
|
|
4744
4786
|
* Configuration of a styled layer service. This service type is a visual feature layer,
|
|
@@ -4775,6 +4817,8 @@ export interface StyledLayerServiceConfigurationDc {
|
|
|
4775
4817
|
export interface SymbolDc {
|
|
4776
4818
|
/** Type of the symbol. */
|
|
4777
4819
|
type?: string;
|
|
4820
|
+
/** If set true symbol will not be rendered. */
|
|
4821
|
+
disabled?: boolean;
|
|
4778
4822
|
}
|
|
4779
4823
|
/**
|
|
4780
4824
|
* Common fields for table configurations.
|
|
@@ -6376,7 +6420,7 @@ export interface GetProjectsListParams {
|
|
|
6376
6420
|
*/
|
|
6377
6421
|
export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
6378
6422
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
6379
|
-
export interface
|
|
6423
|
+
export interface DeleteResourcesParams3 {
|
|
6380
6424
|
/** Resource names. */
|
|
6381
6425
|
names?: string[];
|
|
6382
6426
|
}
|
|
@@ -6572,7 +6616,7 @@ export interface StatisticsDbParams {
|
|
|
6572
6616
|
/** Type of required statistic function. */
|
|
6573
6617
|
types?: AggregationFunction[];
|
|
6574
6618
|
}
|
|
6575
|
-
export interface
|
|
6619
|
+
export interface ClassifyParams1 {
|
|
6576
6620
|
/** Layer name. */
|
|
6577
6621
|
name?: string;
|
|
6578
6622
|
/** Attribute name. */
|
|
@@ -6677,6 +6721,10 @@ export interface GetTableListParams {
|
|
|
6677
6721
|
*/
|
|
6678
6722
|
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
6679
6723
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6724
|
+
export interface DeleteResourcesParams5 {
|
|
6725
|
+
/** Resource names. */
|
|
6726
|
+
names?: string[];
|
|
6727
|
+
}
|
|
6680
6728
|
/**
|
|
6681
6729
|
* Table description with columns what must be added and deleted.
|
|
6682
6730
|
*/
|
|
@@ -6778,7 +6826,7 @@ export interface GetCapabilitiesParams {
|
|
|
6778
6826
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6779
6827
|
AcceptFormats?: string[];
|
|
6780
6828
|
}
|
|
6781
|
-
export interface
|
|
6829
|
+
export interface GetCapabilitiesParams9 {
|
|
6782
6830
|
/** Output format of service metadata. */
|
|
6783
6831
|
Format?: string;
|
|
6784
6832
|
/** Must be WMS. */
|