@evergis/api 3.0.66 → 3.0.67
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__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +192 -4
- 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, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams9, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, ResourceInfoDc, ServiceInfoDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, SharedProjectInfoDc, UpdateProjectPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -82,7 +82,7 @@ export declare class ProjectsService extends Service {
|
|
|
82
82
|
* @request DELETE:/projects
|
|
83
83
|
* @response `200` Success
|
|
84
84
|
*/
|
|
85
|
-
deleteResources(query:
|
|
85
|
+
deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
|
|
86
86
|
/**
|
|
87
87
|
* No description
|
|
88
88
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload,
|
|
1
|
+
import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams10, 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: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams4, 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: GetCapabilitiesParams4): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -434,6 +434,13 @@ export interface AvailabilityAreaTaskDc {
|
|
|
434
434
|
/** Storage that is to be used as a target for writing the task result. */
|
|
435
435
|
target: BaseTaskDataStorageDc;
|
|
436
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* Simply Base64 string.
|
|
439
|
+
*/
|
|
440
|
+
export interface Base64String {
|
|
441
|
+
/** string value. */
|
|
442
|
+
value?: string;
|
|
443
|
+
}
|
|
437
444
|
/**
|
|
438
445
|
* The result of a server task step execution.
|
|
439
446
|
*/
|
|
@@ -1696,6 +1703,20 @@ export declare enum GeometryType {
|
|
|
1696
1703
|
Envelope = "envelope",
|
|
1697
1704
|
Multipoint = "multipoint"
|
|
1698
1705
|
}
|
|
1706
|
+
/**
|
|
1707
|
+
* Map element data contract.
|
|
1708
|
+
*/
|
|
1709
|
+
export interface GridElementDc {
|
|
1710
|
+
/** Grid color. */
|
|
1711
|
+
color?: string;
|
|
1712
|
+
/**
|
|
1713
|
+
* Grid width.
|
|
1714
|
+
* @format int32
|
|
1715
|
+
*/
|
|
1716
|
+
gridThickness?: number;
|
|
1717
|
+
/** Check what this model element enabled. */
|
|
1718
|
+
enabled?: boolean;
|
|
1719
|
+
}
|
|
1699
1720
|
/**
|
|
1700
1721
|
* Resource group.
|
|
1701
1722
|
|
|
@@ -2059,6 +2080,56 @@ export interface LayerDefinitionDc {
|
|
|
2059
2080
|
/** The description of the attributes of the layer. */
|
|
2060
2081
|
attributes: Record<string, AttributeDefinitionDc | null>;
|
|
2061
2082
|
}
|
|
2083
|
+
/**
|
|
2084
|
+
* Map element data contract.
|
|
2085
|
+
*/
|
|
2086
|
+
export interface LayerMapElementDc {
|
|
2087
|
+
/** Gets or sets layers for printing. */
|
|
2088
|
+
layers?: LayerModelDc[];
|
|
2089
|
+
mapCenter?: Vector2;
|
|
2090
|
+
/**
|
|
2091
|
+
* Gets or sets map width.
|
|
2092
|
+
* @format int32
|
|
2093
|
+
*/
|
|
2094
|
+
paperWidth?: number;
|
|
2095
|
+
/**
|
|
2096
|
+
* Gets or sets map height.
|
|
2097
|
+
* @format int32
|
|
2098
|
+
*/
|
|
2099
|
+
paperHeight?: number;
|
|
2100
|
+
/**
|
|
2101
|
+
* Gets or sets spatial reference.
|
|
2102
|
+
* @format int32
|
|
2103
|
+
*/
|
|
2104
|
+
spatialReference?: number;
|
|
2105
|
+
/**
|
|
2106
|
+
* Gets or sets map resolution.
|
|
2107
|
+
* @format double
|
|
2108
|
+
*/
|
|
2109
|
+
resolution?: number;
|
|
2110
|
+
/** Gets or sets grid map element. */
|
|
2111
|
+
gridElement?: GridElementDc | ModelElementDc;
|
|
2112
|
+
/** Gets or sets ScaleBar element settings for printing. */
|
|
2113
|
+
scaleBar?: ScaleBarElementDc | ModelElementDc;
|
|
2114
|
+
/** Check what this model element enabled. */
|
|
2115
|
+
enabled?: boolean;
|
|
2116
|
+
}
|
|
2117
|
+
/**
|
|
2118
|
+
* Layer model data contract.
|
|
2119
|
+
*/
|
|
2120
|
+
export interface LayerModelDc {
|
|
2121
|
+
/** Gets or sets name of layer service. */
|
|
2122
|
+
layerServiceName?: string;
|
|
2123
|
+
/**
|
|
2124
|
+
* Gets or sets layer opacity.
|
|
2125
|
+
* @format float
|
|
2126
|
+
*/
|
|
2127
|
+
layerOpacity?: number;
|
|
2128
|
+
/** Condition to apply to the layer to filter the features. */
|
|
2129
|
+
condition?: string;
|
|
2130
|
+
/** Id of the override style to apply to the layer. If not set, the layer original style is used. */
|
|
2131
|
+
styleId?: string;
|
|
2132
|
+
}
|
|
2062
2133
|
/**
|
|
2063
2134
|
* The description of the layer service as a server task data storage.
|
|
2064
2135
|
*/
|
|
@@ -2073,6 +2144,50 @@ export interface LayerTaskDataStorageDc {
|
|
|
2073
2144
|
createNewService?: boolean;
|
|
2074
2145
|
type?: string;
|
|
2075
2146
|
}
|
|
2147
|
+
/**
|
|
2148
|
+
* Layer template model data contract.
|
|
2149
|
+
*/
|
|
2150
|
+
export interface LayerTemplateModelDc {
|
|
2151
|
+
type?: string;
|
|
2152
|
+
/** Gets or sets map element settings and layers for printing. */
|
|
2153
|
+
map?: LayerMapElementDc | ModelElementDc;
|
|
2154
|
+
/** Check if legend enabled. */
|
|
2155
|
+
legendEnabled?: boolean;
|
|
2156
|
+
/**
|
|
2157
|
+
* Legend layers from client.
|
|
2158
|
+
* Set null for using serverSide generated legend.
|
|
2159
|
+
*/
|
|
2160
|
+
legendLayers?: LegendLayerDc[];
|
|
2161
|
+
/** The name of the result file. */
|
|
2162
|
+
fileName?: string;
|
|
2163
|
+
/** File Format. */
|
|
2164
|
+
fileFormat?: string;
|
|
2165
|
+
/** Gets or sets template name. */
|
|
2166
|
+
templateName?: string;
|
|
2167
|
+
/** Gets or sets template title. */
|
|
2168
|
+
title?: string;
|
|
2169
|
+
/**
|
|
2170
|
+
* Gets or sets paper width.
|
|
2171
|
+
* @format int32
|
|
2172
|
+
*/
|
|
2173
|
+
paperWidth?: number;
|
|
2174
|
+
/**
|
|
2175
|
+
* Gets or sets paper height.
|
|
2176
|
+
* @format int32
|
|
2177
|
+
*/
|
|
2178
|
+
paperHeight?: number;
|
|
2179
|
+
/**
|
|
2180
|
+
* Gets or sets dpi.
|
|
2181
|
+
* @format int32
|
|
2182
|
+
*/
|
|
2183
|
+
dpi?: number;
|
|
2184
|
+
/** Gets or sets paper margin. */
|
|
2185
|
+
margin?: number[];
|
|
2186
|
+
/** Localization of map. */
|
|
2187
|
+
localization?: TemplateLocalizationDc;
|
|
2188
|
+
/** Checks if title enabled. */
|
|
2189
|
+
titleEnabled?: boolean;
|
|
2190
|
+
}
|
|
2076
2191
|
/**
|
|
2077
2192
|
* Information about layer update.
|
|
2078
2193
|
Includes ids of modified features and their bbox.
|
|
@@ -2088,6 +2203,37 @@ export interface LayerUpdateInfoDc {
|
|
|
2088
2203
|
/** Array of deleted ids. */
|
|
2089
2204
|
deletedIds?: ObjectId[];
|
|
2090
2205
|
}
|
|
2206
|
+
/**
|
|
2207
|
+
* Legend layer attribute condition data contract.
|
|
2208
|
+
*/
|
|
2209
|
+
export interface LegendLayerAttributeConditionDc {
|
|
2210
|
+
/** Simply Base64 string. */
|
|
2211
|
+
symbol?: Base64String;
|
|
2212
|
+
/** Legend layer attribute condition string. */
|
|
2213
|
+
value?: string;
|
|
2214
|
+
}
|
|
2215
|
+
/**
|
|
2216
|
+
* Legend layer attribute data contract.
|
|
2217
|
+
*/
|
|
2218
|
+
export interface LegendLayerAttributeDc {
|
|
2219
|
+
/** Legend layer attribute name. */
|
|
2220
|
+
name?: string;
|
|
2221
|
+
/** Legend layer attribute conditions. */
|
|
2222
|
+
conditions?: LegendLayerAttributeConditionDc[];
|
|
2223
|
+
}
|
|
2224
|
+
/**
|
|
2225
|
+
* Legend layer data contract.
|
|
2226
|
+
*/
|
|
2227
|
+
export interface LegendLayerDc {
|
|
2228
|
+
/** Simply Base64 string. */
|
|
2229
|
+
symbol?: Base64String;
|
|
2230
|
+
/** Legend layer name. */
|
|
2231
|
+
name?: string;
|
|
2232
|
+
/** Layer service name. */
|
|
2233
|
+
layerServiceName?: string;
|
|
2234
|
+
/** Legend layer attributes. */
|
|
2235
|
+
attributes?: LegendLayerAttributeDc[];
|
|
2236
|
+
}
|
|
2091
2237
|
/**
|
|
2092
2238
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
2093
2239
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
@@ -2302,6 +2448,13 @@ export interface MaskedImagePointSymbolDc {
|
|
|
2302
2448
|
*/
|
|
2303
2449
|
angle?: ParameterDcDouble;
|
|
2304
2450
|
}
|
|
2451
|
+
/**
|
|
2452
|
+
* Base template model data contract.
|
|
2453
|
+
*/
|
|
2454
|
+
export interface ModelElementDc {
|
|
2455
|
+
/** Check what this model element enabled. */
|
|
2456
|
+
enabled?: boolean;
|
|
2457
|
+
}
|
|
2305
2458
|
/**
|
|
2306
2459
|
* A multipoint symbol.
|
|
2307
2460
|
*/
|
|
@@ -3339,6 +3492,35 @@ export interface RoutingProviderInfoDc {
|
|
|
3339
3492
|
/** Routing profile (e.g. car, walking, bicycle etc.) */
|
|
3340
3493
|
profile?: string;
|
|
3341
3494
|
}
|
|
3495
|
+
/**
|
|
3496
|
+
* ScaleBar element data contract.
|
|
3497
|
+
*/
|
|
3498
|
+
export interface ScaleBarElementDc {
|
|
3499
|
+
/**
|
|
3500
|
+
* ScaleBar width.
|
|
3501
|
+
* @format int32
|
|
3502
|
+
*/
|
|
3503
|
+
width?: number;
|
|
3504
|
+
/**
|
|
3505
|
+
* ScaleBar height.
|
|
3506
|
+
* @format int32
|
|
3507
|
+
*/
|
|
3508
|
+
height?: number;
|
|
3509
|
+
/**
|
|
3510
|
+
* ScaleBar thickness.
|
|
3511
|
+
* @format int32
|
|
3512
|
+
*/
|
|
3513
|
+
thickness?: number;
|
|
3514
|
+
/** Font for scaleBar. */
|
|
3515
|
+
font?: string;
|
|
3516
|
+
/**
|
|
3517
|
+
* Font size for scaleBar.
|
|
3518
|
+
* @format float
|
|
3519
|
+
*/
|
|
3520
|
+
fontSize?: number;
|
|
3521
|
+
/** Check what this model element enabled. */
|
|
3522
|
+
enabled?: boolean;
|
|
3523
|
+
}
|
|
3342
3524
|
/**
|
|
3343
3525
|
* Suggest user information.
|
|
3344
3526
|
*/
|
|
@@ -4726,6 +4908,12 @@ export interface UserOrRoleDc {
|
|
|
4726
4908
|
/** User own role. */
|
|
4727
4909
|
aclRole?: string;
|
|
4728
4910
|
}
|
|
4911
|
+
export interface Vector2 {
|
|
4912
|
+
/** @format double */
|
|
4913
|
+
x?: number;
|
|
4914
|
+
/** @format double */
|
|
4915
|
+
y?: number;
|
|
4916
|
+
}
|
|
4729
4917
|
/**
|
|
4730
4918
|
* Workspace limits data contract.
|
|
4731
4919
|
*/
|
|
@@ -4749,7 +4937,7 @@ export interface WorkspaceLimitsDc {
|
|
|
4749
4937
|
* Max current features in one table.
|
|
4750
4938
|
* @format int64
|
|
4751
4939
|
*/
|
|
4752
|
-
|
|
4940
|
+
currentFeaturesInOneTable?: number;
|
|
4753
4941
|
/**
|
|
4754
4942
|
* Max projects count in workspace.
|
|
4755
4943
|
* @format int32
|
|
@@ -5596,7 +5784,7 @@ export interface GetProjectsListParams {
|
|
|
5596
5784
|
*/
|
|
5597
5785
|
export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
|
|
5598
5786
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5599
|
-
export interface
|
|
5787
|
+
export interface DeleteResourcesParams9 {
|
|
5600
5788
|
/** Resource names. */
|
|
5601
5789
|
names?: string[];
|
|
5602
5790
|
}
|
|
@@ -5855,7 +6043,7 @@ export interface GetTableListParams {
|
|
|
5855
6043
|
*/
|
|
5856
6044
|
export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
|
|
5857
6045
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
5858
|
-
export interface
|
|
6046
|
+
export interface DeleteResourcesParams10 {
|
|
5859
6047
|
/** Resource names. */
|
|
5860
6048
|
names?: string[];
|
|
5861
6049
|
}
|
|
@@ -5960,7 +6148,7 @@ export interface GetCapabilitiesParams {
|
|
|
5960
6148
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
5961
6149
|
AcceptFormats?: string[];
|
|
5962
6150
|
}
|
|
5963
|
-
export interface
|
|
6151
|
+
export interface GetCapabilitiesParams4 {
|
|
5964
6152
|
/** Output format of service metadata. */
|
|
5965
6153
|
Format?: string;
|
|
5966
6154
|
/** Must be WMS. */
|