@evergis/api 3.0.68 → 3.0.69

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, DeleteResourcesParams9, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, ResourceInfoDc, ServiceInfoDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, SharedProjectInfoDc, UpdateProjectPayload } from './data-contracts';
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';
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: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
85
+ deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
86
86
  /**
87
87
  * No description
88
88
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams4, PositionDc, StatisticParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams7, 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: ClassifyParams4): Promise<ClassifyDc>;
30
+ classify(query: ClassifyParams7): Promise<ClassifyDc>;
31
31
  }
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams6, 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, 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: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams2, 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: GetCapabilitiesParams2): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams8): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -2650,6 +2650,34 @@ export interface PipelineTaskParametersDc {
2650
2650
  /** The tasks to execute in the pipeline. */
2651
2651
  innerTasks: TaskParametersDc[];
2652
2652
  }
2653
+ /**
2654
+ * Spatial point geometry object representation.
2655
+ */
2656
+ export interface PointDc {
2657
+ /** Point coordinates. */
2658
+ coordinates: PositionDc;
2659
+ /**
2660
+ *
2661
+ *
2662
+ * unknown
2663
+ *
2664
+ * point
2665
+ *
2666
+ * polyline
2667
+ *
2668
+ * polygon
2669
+ *
2670
+ * envelope
2671
+ *
2672
+ * multipoint
2673
+ */
2674
+ type?: GeometryType;
2675
+ /**
2676
+ * Spatial reference id.
2677
+ * @format int32
2678
+ */
2679
+ sr?: number;
2680
+ }
2653
2681
  /**
2654
2682
  * Label of a point object.
2655
2683
  */
@@ -2731,6 +2759,62 @@ export declare enum PolicyType {
2731
2759
  CreateProject = "CreateProject",
2732
2760
  MaxFeaturesInOneTable = "MaxFeaturesInOneTable"
2733
2761
  }
2762
+ /**
2763
+ * Polyline and Polygon base geometry object definition.
2764
+ */
2765
+ export interface PolyDc {
2766
+ /** Poly coordinates. */
2767
+ coordinates: PositionDc[][];
2768
+ /**
2769
+ *
2770
+ *
2771
+ * unknown
2772
+ *
2773
+ * point
2774
+ *
2775
+ * polyline
2776
+ *
2777
+ * polygon
2778
+ *
2779
+ * envelope
2780
+ *
2781
+ * multipoint
2782
+ */
2783
+ type: GeometryType;
2784
+ /**
2785
+ * Spatial reference id.
2786
+ * @format int32
2787
+ */
2788
+ sr?: number;
2789
+ }
2790
+ /**
2791
+ * Polygon geometry object definition.
2792
+ */
2793
+ export interface PolygonDc {
2794
+ /**
2795
+ *
2796
+ *
2797
+ * unknown
2798
+ *
2799
+ * point
2800
+ *
2801
+ * polyline
2802
+ *
2803
+ * polygon
2804
+ *
2805
+ * envelope
2806
+ *
2807
+ * multipoint
2808
+ */
2809
+ type?: GeometryType;
2810
+ /** Poly coordinates. */
2811
+ coordinates: PositionDc[][];
2812
+ /**
2813
+ * Spatial reference id.
2814
+ * @format int32
2815
+ */
2816
+ sr?: number;
2817
+ }
2734
2818
  /**
2735
2819
  * Label for polygon objects. It is drawn at the most appropriate place inside a polygon.
2736
2820
  */
@@ -2783,6 +2867,34 @@ export interface PolygonSymbolDc {
2783
2867
  /** Specifies stroke style. */
2784
2868
  fill?: BrushDc | FillBrushDc | IBrushDc;
2785
2869
  }
2870
+ /**
2871
+ * Polyline geometry object definition.
2872
+ */
2873
+ export interface PolylineDc {
2874
+ /**
2875
+ *
2876
+ *
2877
+ * unknown
2878
+ *
2879
+ * point
2880
+ *
2881
+ * polyline
2882
+ *
2883
+ * polygon
2884
+ *
2885
+ * envelope
2886
+ *
2887
+ * multipoint
2888
+ */
2889
+ type?: GeometryType;
2890
+ /** Poly coordinates. */
2891
+ coordinates: PositionDc[][];
2892
+ /**
2893
+ * Spatial reference id.
2894
+ * @format int32
2895
+ */
2896
+ sr?: number;
2897
+ }
2786
2898
  /**
2787
2899
  * Label for polyline objects. It is drawn repeatedly along a line.
2788
2900
  */
@@ -5793,7 +5905,7 @@ export interface GetProjectsListParams {
5793
5905
  */
5794
5906
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
5795
5907
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5796
- export interface DeleteResourcesParams9 {
5908
+ export interface DeleteResourcesParams2 {
5797
5909
  /** Resource names. */
5798
5910
  names?: string[];
5799
5911
  }
@@ -6007,7 +6119,7 @@ export interface StatisticParams {
6007
6119
  */
6008
6120
  type?: StatisticsType;
6009
6121
  }
6010
- export interface ClassifyParams4 {
6122
+ export interface ClassifyParams7 {
6011
6123
  /** Layer name. */
6012
6124
  layerName?: string;
6013
6125
  /** Attribute name. */
@@ -6082,7 +6194,7 @@ export interface GetTableListParams {
6082
6194
  */
6083
6195
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6084
6196
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6085
- export interface DeleteResourcesParams6 {
6197
+ export interface DeleteResourcesParams10 {
6086
6198
  /** Resource names. */
6087
6199
  names?: string[];
6088
6200
  }
@@ -6187,7 +6299,7 @@ export interface GetCapabilitiesParams {
6187
6299
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6188
6300
  AcceptFormats?: string[];
6189
6301
  }
6190
- export interface GetCapabilitiesParams2 {
6302
+ export interface GetCapabilitiesParams8 {
6191
6303
  /** Output format of service metadata. */
6192
6304
  Format?: string;
6193
6305
  /** Must be WMS. */