@evergis/api 3.0.69 → 3.0.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams2, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, ResourceInfoDc, ServiceInfoDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, SharedProjectInfoDc, UpdateProjectPayload } from './data-contracts';
1
+ import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams8, 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: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
85
+ deleteResources(query: DeleteResourcesParams8): Promise<BulkOperationResultDc[]>;
86
86
  /**
87
87
  * No description
88
88
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams7, PositionDc, StatisticParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams6, PositionDc, StatisticParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -27,5 +27,5 @@ export declare class StatisticService extends Service {
27
27
  * @request GET:/classify
28
28
  * @response `200` Success
29
29
  */
30
- classify(query: ClassifyParams7): Promise<ClassifyDc>;
30
+ classify(query: ClassifyParams6): Promise<ClassifyDc>;
31
31
  }
@@ -1,4 +1,4 @@
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';
1
+ import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams2, 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: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams8, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, 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: GetCapabilitiesParams8): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams9): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -924,6 +924,39 @@ export interface CreateUserDc {
924
924
  /** Phone number. */
925
925
  phone?: string;
926
926
  }
927
+ /**
928
+ * Description of the temp file as a task data storage.
929
+ */
930
+ export interface CsvStaticTaskDataStorageDc {
931
+ /**
932
+ * Attribute name row number.
933
+ * @format int32
934
+ */
935
+ attributeNameRowNumber?: number;
936
+ /** If set true - second row will be read as alias row. */
937
+ containsAliasRow?: boolean;
938
+ /**
939
+ * First data row number.
940
+ * @format int32
941
+ */
942
+ firstDataRowNumber?: number;
943
+ /** Coord source fields. */
944
+ coordSourceFields: string[];
945
+ /** CSV column delimiter. */
946
+ columnDelimiter?: string;
947
+ /**
948
+ * Spatial reference.
949
+ * @format int32
950
+ */
951
+ spatialReference?: number;
952
+ /** Export geometry as Wkt. */
953
+ isWkt?: boolean;
954
+ type?: string;
955
+ /** The id of the file in the temporary session static storage. */
956
+ fileName: string;
957
+ /** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
958
+ layerName?: string;
959
+ }
927
960
  /**
928
961
  * Describes stroked dashed brush.
929
962
  */
@@ -1180,6 +1213,40 @@ export declare enum ErrorType {
1180
1213
  EmailNotChanged = "EmailNotChanged",
1181
1214
  EmailNotSet = "EmailNotSet"
1182
1215
  }
1216
+ /**
1217
+ * Description of the temp file as a task data storage.
1218
+ */
1219
+ export interface ExcelStaticTaskDataStorageDc {
1220
+ /**
1221
+ * Attribute name row number.
1222
+ * @format int32
1223
+ */
1224
+ attributeNameRowNumber?: number;
1225
+ /**
1226
+ * Alias row number.
1227
+ * @format int32
1228
+ */
1229
+ aliasRowNumber?: number;
1230
+ /**
1231
+ * First data row number.
1232
+ * @format int32
1233
+ */
1234
+ firstDataRowNumber?: number;
1235
+ /** Coord source fields. */
1236
+ coordSourceFields: string[];
1237
+ /**
1238
+ * Spatial reference.
1239
+ * @format int32
1240
+ */
1241
+ spatialReference: number;
1242
+ /** Export geometry as Wkt. */
1243
+ isWkt?: boolean;
1244
+ type?: string;
1245
+ /** The id of the file in the temporary session static storage. */
1246
+ fileName: string;
1247
+ /** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
1248
+ layerName?: string;
1249
+ }
1183
1250
  /**
1184
1251
  * Result of the eql expression validation.
1185
1252
  */
@@ -2010,6 +2077,49 @@ export interface ImportLayerDataSchema {
2010
2077
  /** Schema of a inner layers. */
2011
2078
  children?: ImportLayerDataSchema[];
2012
2079
  }
2080
+ /**
2081
+ * The description of the temporary features list as a server task data storage.
2082
+ */
2083
+ export interface InMemoryTaskDataStorageDc {
2084
+ type?: string;
2085
+ /** List of features to save in storage. */
2086
+ features: FeatureDc[];
2087
+ /** The name of the attribute that is used to uniquely identify a feature in the layer. */
2088
+ idAttribute: string;
2089
+ /** The name of the attribute that is used for assigning geometry value for the feature. */
2090
+ geometryAttribute: string;
2091
+ /**
2092
+ *
2093
+ *
2094
+ * unknown
2095
+ *
2096
+ * point
2097
+ *
2098
+ * polyline
2099
+ *
2100
+ * polygon
2101
+ *
2102
+ * envelope
2103
+ *
2104
+ * multipoint
2105
+ */
2106
+ geometryType: GeometryType;
2107
+ /**
2108
+ * The spatial reference of the layer.
2109
+ * @format int32
2110
+ */
2111
+ spatialReference?: number;
2112
+ }
2113
+ /**
2114
+ * Description of the temp file as a task data storage.
2115
+ */
2116
+ export interface KmlStaticTaskDataStorageDc {
2117
+ type?: string;
2118
+ /** The id of the file in the temporary session static storage. */
2119
+ fileName: string;
2120
+ /** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
2121
+ layerName?: string;
2122
+ }
2013
2123
  /**
2014
2124
  * Base class for labels.
2015
2125
  */
@@ -2243,6 +2353,50 @@ export interface LegendLayerDc {
2243
2353
  /** Legend layer attributes. */
2244
2354
  attributes?: LegendLayerAttributeDc[];
2245
2355
  }
2356
+ /**
2357
+ * Legend template model data contract.
2358
+ */
2359
+ export interface LegendTemplateModelDc {
2360
+ /** Gets or sets layers for printing. */
2361
+ layers?: LayerModelDc[];
2362
+ /** Check if legend enabled. */
2363
+ legendEnabled?: boolean;
2364
+ /**
2365
+ * Legend layers from client.
2366
+ * Set null for using serverSide generated legend.
2367
+ */
2368
+ legendLayers?: LegendLayerDc[];
2369
+ type?: string;
2370
+ /** The name of the result file. */
2371
+ fileName?: string;
2372
+ /** File Format. */
2373
+ fileFormat?: string;
2374
+ /** Gets or sets template name. */
2375
+ templateName?: string;
2376
+ /** Gets or sets template title. */
2377
+ title?: string;
2378
+ /**
2379
+ * Gets or sets paper width.
2380
+ * @format int32
2381
+ */
2382
+ paperWidth?: number;
2383
+ /**
2384
+ * Gets or sets paper height.
2385
+ * @format int32
2386
+ */
2387
+ paperHeight?: number;
2388
+ /**
2389
+ * Gets or sets dpi.
2390
+ * @format int32
2391
+ */
2392
+ dpi?: number;
2393
+ /** Gets or sets paper margin. */
2394
+ margin?: number[];
2395
+ /** Localization of map. */
2396
+ localization?: TemplateLocalizationDc;
2397
+ /** Checks if title enabled. */
2398
+ titleEnabled?: boolean;
2399
+ }
2246
2400
  /**
2247
2401
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2248
2402
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
@@ -4255,6 +4409,16 @@ export interface SquarePointSymbolDc {
4255
4409
  /** Offset of the square center from the geographic point. */
4256
4410
  offset?: ParameterDcDouble[];
4257
4411
  }
4412
+ /**
4413
+ * Description of the temp file as a task data storage.
4414
+ */
4415
+ export interface StaticTaskDataStorageDc {
4416
+ /** The id of the file in the temporary session static storage. */
4417
+ fileName: string;
4418
+ /** The name of the layer in the file to be used. If not specified, the first found layer will be used. */
4419
+ layerName?: string;
4420
+ type?: string;
4421
+ }
4258
4422
  /**
4259
4423
  * Describes statistics methods.
4260
4424
 
@@ -4290,6 +4454,32 @@ export declare enum StatisticsType {
4290
4454
  FirstLast = "firstLast",
4291
4455
  StandardDeviation = "standardDeviation"
4292
4456
  }
4457
+ /**
4458
+ * The result of a server task step execution.
4459
+ */
4460
+ export interface StepResultDc {
4461
+ stepName?: string;
4462
+ inputSource?: string;
4463
+ outSource?: string;
4464
+ /** @format date-time */
4465
+ startedTime?: string;
4466
+ /** @format date-time */
4467
+ endedTime?: string;
4468
+ batchErrors?: string[];
4469
+ /** @format int32 */
4470
+ batchCount?: number;
4471
+ /** @format int64 */
4472
+ inputObjectCount?: number;
4473
+ /** @format int64 */
4474
+ errorCount?: number;
4475
+ /** @format int64 */
4476
+ outputObjectCount?: number;
4477
+ /**
4478
+ * Some task batches may choose to report additional details about the execution process and result. These
4479
+ * details are written in the format: { "Value description": int_value }.
4480
+ */
4481
+ resultDetails?: Record<string, number | null>;
4482
+ }
4293
4483
  /**
4294
4484
  * The `StringSubType` provides information about string attribute subtype.
4295
4485
 
@@ -4484,6 +4674,14 @@ export interface TableReferenceConfigurationDc {
4484
4674
  /** Child related tables configurations. */
4485
4675
  tableReferences?: TableReferenceConfigurationDc[];
4486
4676
  }
4677
+ /**
4678
+ * Data storage that allows accessing features directly from the tables.
4679
+ */
4680
+ export interface TableTaskDataStorageDc {
4681
+ /** Full name of the table (including namespace if any). */
4682
+ tableName: string;
4683
+ type?: string;
4684
+ }
4487
4685
  /**
4488
4686
  * Detailed information about a server task.
4489
4687
  */
@@ -4839,6 +5037,16 @@ export interface TileServiceInfoDc {
4839
5037
  /** Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends. */
4840
5038
  icon?: string;
4841
5039
  }
5040
+ /**
5041
+ * The description of the tile feature layer service as a server task data storage.
5042
+ */
5043
+ export interface TilingTaskDataStorageDc {
5044
+ /** The name of the tile feature layer service. */
5045
+ serviceName: string;
5046
+ /** If set to true, a new service with the given LayerServiceName will be created before the task is executed. */
5047
+ createNewService?: boolean;
5048
+ type?: string;
5049
+ }
4842
5050
  /**
4843
5051
  * The operation that unites the features in the storage.
4844
5052
  */
@@ -5905,7 +6113,7 @@ export interface GetProjectsListParams {
5905
6113
  */
5906
6114
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
5907
6115
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5908
- export interface DeleteResourcesParams2 {
6116
+ export interface DeleteResourcesParams8 {
5909
6117
  /** Resource names. */
5910
6118
  names?: string[];
5911
6119
  }
@@ -6119,7 +6327,7 @@ export interface StatisticParams {
6119
6327
  */
6120
6328
  type?: StatisticsType;
6121
6329
  }
6122
- export interface ClassifyParams7 {
6330
+ export interface ClassifyParams6 {
6123
6331
  /** Layer name. */
6124
6332
  layerName?: string;
6125
6333
  /** Attribute name. */
@@ -6194,7 +6402,7 @@ export interface GetTableListParams {
6194
6402
  */
6195
6403
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6196
6404
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6197
- export interface DeleteResourcesParams10 {
6405
+ export interface DeleteResourcesParams2 {
6198
6406
  /** Resource names. */
6199
6407
  names?: string[];
6200
6408
  }
@@ -6299,7 +6507,7 @@ export interface GetCapabilitiesParams {
6299
6507
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6300
6508
  AcceptFormats?: string[];
6301
6509
  }
6302
- export interface GetCapabilitiesParams8 {
6510
+ export interface GetCapabilitiesParams9 {
6303
6511
  /** Output format of service metadata. */
6304
6512
  Format?: string;
6305
6513
  /** Must be WMS. */