@evergis/api 3.0.164 → 3.0.165

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, BulkOperationResultDc, DeleteResourcesParams10, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, 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: DeleteResourcesParams10): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -16,7 +16,7 @@ export declare class SchedulerService extends Service {
16
16
  * @request GET:/scheduler/tasks
17
17
  * @response `200` Success
18
18
  */
19
- getTaskList(query: GetTaskListParams): Promise<TaskStatusDataDc[]>;
19
+ getTaskList(query: GetTaskListParams): Promise<import("./data-contracts").PagedListTaskStatusDataDc[]>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams6, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams2, 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: ClassifyParams2): Promise<ClassifyDc>;
31
31
  /**
32
32
  * No description
33
33
  *
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams3, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, 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: DeleteResourcesParams3): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams3, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
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: GetCapabilitiesParams3): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams4): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -403,6 +403,8 @@ export interface AttributeConfigurationDc {
403
403
  clientData?: any;
404
404
  /** Id of table given attribute is referenced. */
405
405
  referenceId?: string;
406
+ /** A set of layer references. */
407
+ layerReferenceId?: string[];
406
408
  /**
407
409
  * Attribute selector type.
408
410
  *
@@ -1490,6 +1492,8 @@ export interface EqlRequestDc {
1490
1492
  * @format int32
1491
1493
  */
1492
1494
  limit?: number;
1495
+ /** EQL query parameters. */
1496
+ parameters?: Record<string, any>;
1493
1497
  }
1494
1498
  /**
1495
1499
  * Resource error details.
@@ -3355,6 +3359,28 @@ export interface PagedListTagInfoDc {
3355
3359
  /** The retrieved items in the list. */
3356
3360
  items?: TagInfoDc[];
3357
3361
  }
3362
+ /**
3363
+ * A list of items that is returned for filtered paged requests.
3364
+ */
3365
+ export interface PagedListTaskStatusDataDc {
3366
+ /**
3367
+ * Total number of items that the list contains, e.g. if the paging is not applied.
3368
+ * @format int64
3369
+ */
3370
+ totalCount?: number;
3371
+ /**
3372
+ * The first index of the item in the list that is returned in the Items parameter.
3373
+ * @format int32
3374
+ */
3375
+ offset?: number;
3376
+ /**
3377
+ * Maximum number of the items that the Items parameter may contain.
3378
+ * @format int32
3379
+ */
3380
+ limit?: number;
3381
+ /** The retrieved items in the list. */
3382
+ items?: TaskStatusDataDc[];
3383
+ }
3358
3384
  /**
3359
3385
  * A list of items that is returned for filtered paged requests.
3360
3386
  */
@@ -5341,6 +5367,10 @@ export interface TaskInfoDc {
5341
5367
  */
5342
5368
  completedDate?: string;
5343
5369
  }
5370
+ /**
5371
+ * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
5372
+ */
5373
+ export declare type TaskListDc = PagedListTaskStatusDataDc;
5344
5374
  /**
5345
5375
  * Base class for server tasks descriptions.
5346
5376
  */
@@ -7050,7 +7080,7 @@ export interface GetProjectsListParams {
7050
7080
  tags?: string[];
7051
7081
  }
7052
7082
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7053
- export interface DeleteResourcesParams10 {
7083
+ export interface DeleteResourcesParams9 {
7054
7084
  /** Resource names. */
7055
7085
  names?: string[];
7056
7086
  }
@@ -7129,6 +7159,8 @@ export interface GetTaskListParams {
7129
7159
  id?: string[];
7130
7160
  /** Filter the tasks by owners. */
7131
7161
  owners?: string[];
7162
+ /** Columns to returns. */
7163
+ columns?: string[];
7132
7164
  /**
7133
7165
  * Owner group.
7134
7166
  *
@@ -7294,7 +7326,7 @@ export interface StatisticsDbParams {
7294
7326
  */
7295
7327
  types?: AggregationFunction[];
7296
7328
  }
7297
- export interface ClassifyParams6 {
7329
+ export interface ClassifyParams2 {
7298
7330
  /** Layer name. */
7299
7331
  name?: string;
7300
7332
  /** Attribute name. */
@@ -7427,10 +7459,6 @@ export interface GetTableListParams {
7427
7459
  acl?: string;
7428
7460
  }
7429
7461
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7430
- export interface DeleteResourcesParams3 {
7431
- /** Resource names. */
7432
- names?: string[];
7433
- }
7434
7462
  export interface GetTablesInfoParams {
7435
7463
  /** Table names. */
7436
7464
  tableNames?: string[];
@@ -7584,7 +7612,7 @@ export interface GetPublicCapabilitiesParams {
7584
7612
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7585
7613
  AcceptFormats?: string[];
7586
7614
  }
7587
- export interface GetCapabilitiesParams3 {
7615
+ export interface GetCapabilitiesParams4 {
7588
7616
  /** Output format of service metadata. */
7589
7617
  Format?: string;
7590
7618
  /** Must be WMS. */