@evergis/api 3.0.96 → 3.0.97

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 { GetDataSchemaParams, GetExternalArcGisLayersParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportExternalLayers, ImportFileFeaturesCountDc } from './data-contracts';
1
+ import { ExternalLayerInfoDc, GetDataSchemaParams, GetExternalArcGisLayersParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportFileFeaturesCountDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -38,7 +38,7 @@ export declare class ImportService extends Service {
38
38
  * @request GET:/import/wms
39
39
  * @response `200` Success
40
40
  */
41
- getExternalWmsLayers(query: GetExternalWmsLayersParams): Promise<ImportExternalLayers>;
41
+ getExternalWmsLayers(query: GetExternalWmsLayersParams): Promise<ExternalLayerInfoDc[]>;
42
42
  /**
43
43
  * No description
44
44
  *
@@ -49,7 +49,7 @@ export declare class ImportService extends Service {
49
49
  * @request GET:/import/arcgismapservice
50
50
  * @response `200` Success
51
51
  */
52
- getExternalArcGisLayers(query: GetExternalArcGisLayersParams): Promise<ImportExternalLayers>;
52
+ getExternalArcGisLayers(query: GetExternalArcGisLayersParams): Promise<ExternalLayerInfoDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams8, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, ListResponseProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams4, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, ListResponseProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } 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: DeleteResourcesParams8): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams6, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
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: ClassifyParams6): Promise<ClassifyDc>;
30
+ classify(query: ClassifyParams1): Promise<ClassifyDc>;
31
31
  /**
32
32
  * No description
33
33
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams5, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams8, 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: GetCapabilitiesParams5): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams8): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -1372,6 +1372,19 @@ export interface ExtendedUserInfoDc {
1372
1372
  /** The roles of the user. */
1373
1373
  roles?: string[];
1374
1374
  }
1375
+ /**
1376
+ * External layer information.
1377
+ */
1378
+ export interface ExternalLayerInfoDc {
1379
+ /** Name. */
1380
+ name?: string;
1381
+ /** Title. */
1382
+ title?: string;
1383
+ /** Abstract. */
1384
+ abstract?: string;
1385
+ /** Child layers. */
1386
+ layer?: ExternalLayerInfoDc[];
1387
+ }
1375
1388
  /**
1376
1389
  * The `FailedServiceInfoDc` describes SPCore.Security.Base.Services.FailedServiceInfo data contact.
1377
1390
  */
@@ -2096,19 +2109,6 @@ export declare type ImagePolygonSymbolDc = SymbolDc & {
2096
2109
  strokeColor?: ParameterDcColor;
2097
2110
  strokeWidth?: CalculatedParameterDc;
2098
2111
  };
2099
- /**
2100
- * Layers of WMS external service.
2101
- */
2102
- export interface ImportExternalLayers {
2103
- /** List of layers in the data-set. */
2104
- layer: ImportExternalLayers[] | null;
2105
- /** abstract field of WMS external service. */
2106
- abstract: string;
2107
- /** name field of WMS external service. */
2108
- name: string;
2109
- /** title field of WMS external service. */
2110
- title: string;
2111
- }
2112
2112
  /**
2113
2113
  * Data schema of a file for import.
2114
2114
  */
@@ -4948,11 +4948,11 @@ export interface GetDataSchemaParams {
4948
4948
  }
4949
4949
  export interface GetExternalWmsLayersParams {
4950
4950
  /** WMS service url. */
4951
- wmsUrl?: string;
4951
+ url?: string;
4952
4952
  }
4953
4953
  export interface GetExternalArcGisLayersParams {
4954
4954
  /** ArcGis map service url. */
4955
- arcgisUrl?: string;
4955
+ url?: string;
4956
4956
  }
4957
4957
  export interface GetRasterAttributesParams {
4958
4958
  /** File name in the temporary static storage. */
@@ -5486,7 +5486,7 @@ export interface GetProjectsListParams {
5486
5486
  tags?: string[];
5487
5487
  }
5488
5488
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5489
- export interface DeleteResourcesParams8 {
5489
+ export interface DeleteResourcesParams4 {
5490
5490
  /** Resource names. */
5491
5491
  names?: string[];
5492
5492
  }
@@ -5626,7 +5626,7 @@ export interface StatisticsDbParams {
5626
5626
  /** Type of required statistic function. */
5627
5627
  types?: AggregationFunction[];
5628
5628
  }
5629
- export interface ClassifyParams6 {
5629
+ export interface ClassifyParams1 {
5630
5630
  /** Layer name. */
5631
5631
  name?: string;
5632
5632
  /** Attribute name. */
@@ -5840,7 +5840,7 @@ export interface GetPublicCapabilitiesParams {
5840
5840
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
5841
5841
  AcceptFormats?: string[];
5842
5842
  }
5843
- export interface GetCapabilitiesParams5 {
5843
+ export interface GetCapabilitiesParams8 {
5844
5844
  /** Output format of service metadata. */
5845
5845
  Format?: string;
5846
5846
  /** Must be WMS. */