@evergis/api 3.0.56 → 3.0.59

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.
@@ -0,0 +1,20 @@
1
+ import { GetCapabilitiesParams } from './data-contracts';
2
+ import { Service } from './Service';
3
+ /**
4
+ * @title Spatial Processing Core API
5
+ * @version v0.6.0
6
+ * @baseUrl /sp
7
+ */
8
+ export declare class WfsServerService extends Service {
9
+ /**
10
+ * No description
11
+ *
12
+ * @tags WfsServer
13
+ * @name GetCapabilities
14
+ * @operationId WfsServerController_GetCapabilities
15
+ * @summary Returns get capabilities of wfs service.
16
+ * @request GET:/wfs
17
+ * @response `200` Success
18
+ */
19
+ getCapabilities(query: GetCapabilitiesParams): Promise<void>;
20
+ }
@@ -0,0 +1,20 @@
1
+ import { ProcessRequestParams } from './data-contracts';
2
+ import { Service } from './Service';
3
+ /**
4
+ * @title Spatial Processing Core API
5
+ * @version v0.6.0
6
+ * @baseUrl /sp
7
+ */
8
+ export declare class WmtsService extends Service {
9
+ /**
10
+ * No description
11
+ *
12
+ * @tags Wmts
13
+ * @name ProcessRequest
14
+ * @operationId WmtsController_ProcessRequestAsync
15
+ * @summary WMTS Protocol endpoint.
16
+ * @request GET:/wmts
17
+ * @response `200` Success
18
+ */
19
+ processRequest(query: ProcessRequestParams): Promise<void>;
20
+ }
@@ -4887,7 +4887,9 @@ export interface UpdateVariableDc {
4887
4887
  export declare type UploadRasterTaskParametersDc = TaskParametersDc & {
4888
4888
  target: ConfiguredLayerDataStorageDc | CsvStaticTaskDataStorageDc | ExcelStaticTaskDataStorageDc | InMemoryTaskDataStorageDc | LayerTaskDataStorageDc | StaticTaskDataStorageDc | TableTaskDataStorageDc | TilingTaskDataStorageDc;
4889
4889
  files: string[];
4890
+ attributes?: Record<string, any>;
4890
4891
  maxZoomLevel: number;
4892
+ polygonize?: boolean;
4891
4893
  type?: string;
4892
4894
  };
4893
4895
  /**
@@ -6075,10 +6077,6 @@ export interface GetTableListParams {
6075
6077
  geometryFilter?: string[];
6076
6078
  }
6077
6079
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6078
- export interface DeleteResourcesParams5 {
6079
- /** Resource names. */
6080
- names?: string[];
6081
- }
6082
6080
  export interface GetTableDataParams {
6083
6081
  /** String filter for the all text column (uses % and _ wild cards like SQL). */
6084
6082
  filter?: string;
@@ -6229,7 +6227,38 @@ export interface GetToolsListsParams {
6229
6227
  */
6230
6228
  status?: ToolStatus;
6231
6229
  }
6230
+ export interface GetCapabilitiesParams {
6231
+ /** Name of the service. */
6232
+ Service?: string;
6233
+ /** When omitted, server shall return latest supported version. */
6234
+ AcceptVersions?: string[];
6235
+ /** When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. */
6236
+ Sections?: string[];
6237
+ /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6238
+ AcceptFormats?: string[];
6239
+ }
6232
6240
  export interface ProcessWmsRequestParams {
6241
+ /** Comma-separated list of one or more layers to be queried. */
6242
+ Query_layers?: string;
6243
+ /** Array of one or more map layers. */
6244
+ QueryLayerNames?: string[];
6245
+ /** Return format of feature information (MIME type). */
6246
+ Info_format?: string;
6247
+ /**
6248
+ * i coordinate in pixels of feature in Map CS.
6249
+ * @format int32
6250
+ */
6251
+ I?: number;
6252
+ /**
6253
+ * j coordinate in pixels of feature in Map CS.
6254
+ * @format int32
6255
+ */
6256
+ J?: number;
6257
+ /**
6258
+ * Number of features about which to return information.
6259
+ * @format int32
6260
+ */
6261
+ Feature_count?: number;
6233
6262
  /** Request version. */
6234
6263
  Version?: string;
6235
6264
  /** Comma-separated list of one or more map layers. */
@@ -6277,4 +6306,24 @@ export interface ProcessWmsRequestParams {
6277
6306
  /** Request name. */
6278
6307
  Request?: string;
6279
6308
  }
6309
+ export interface ProcessRequestParams {
6310
+ /** Layer name. */
6311
+ layer?: string;
6312
+ /** wmts version. */
6313
+ version?: string;
6314
+ /** Request type. */
6315
+ request?: string;
6316
+ /** Tile matrix. */
6317
+ tileMatrix?: string;
6318
+ /**
6319
+ * Tile row.
6320
+ * @format int32
6321
+ */
6322
+ tileRow?: number;
6323
+ /**
6324
+ * Tile col.
6325
+ * @format int32
6326
+ */
6327
+ tileCol?: number;
6328
+ }
6280
6329
  export {};