@evergis/api 3.0.109 → 3.0.110

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.
Files changed (40) hide show
  1. package/dist/Api.d.ts +2 -1
  2. package/dist/__generated__/AccountPreviewService.d.ts +1 -1
  3. package/dist/__generated__/AccountService.d.ts +1 -1
  4. package/dist/__generated__/BulkOperationsService.d.ts +1 -1
  5. package/dist/__generated__/ClientSettingsService.d.ts +1 -1
  6. package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
  7. package/dist/__generated__/FeedbackService.d.ts +1 -1
  8. package/dist/__generated__/FiltersService.d.ts +1 -1
  9. package/dist/__generated__/GeneralService.d.ts +1 -1
  10. package/dist/__generated__/GeocodeService.d.ts +1 -1
  11. package/dist/__generated__/IceRouterService.d.ts +1 -1
  12. package/dist/__generated__/ImportService.d.ts +1 -1
  13. package/dist/__generated__/LayersService.d.ts +1 -1
  14. package/dist/__generated__/NamespaceService.d.ts +1 -1
  15. package/dist/__generated__/NotificationService.d.ts +1 -1
  16. package/dist/__generated__/PrintService.d.ts +1 -1
  17. package/dist/__generated__/ProjectsService.d.ts +3 -3
  18. package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
  19. package/dist/__generated__/S3Service.d.ts +1 -1
  20. package/dist/__generated__/SchedulerService.d.ts +1 -1
  21. package/dist/__generated__/SecurityService.d.ts +1 -1
  22. package/dist/__generated__/StaticContentService.d.ts +1 -1
  23. package/dist/__generated__/StatisticService.d.ts +3 -3
  24. package/dist/__generated__/StyleService.d.ts +1 -1
  25. package/dist/__generated__/TablesService.d.ts +3 -3
  26. package/dist/__generated__/TagsService.d.ts +1 -1
  27. package/dist/__generated__/ToolsService.d.ts +1 -1
  28. package/dist/__generated__/WfsServerService.d.ts +1 -1
  29. package/dist/__generated__/WmsServerService.d.ts +3 -3
  30. package/dist/__generated__/WmtsService.d.ts +1 -1
  31. package/dist/__generated__/data-contracts.d.ts +96 -28
  32. package/dist/api.cjs.development.js +121 -23
  33. package/dist/api.cjs.development.js.map +1 -1
  34. package/dist/api.cjs.production.min.js +1 -1
  35. package/dist/api.cjs.production.min.js.map +1 -1
  36. package/dist/api.esm.js +145 -24
  37. package/dist/api.esm.js.map +1 -1
  38. package/dist/services/Filters.d.ts +3 -0
  39. package/dist/services/index.d.ts +1 -0
  40. package/package.json +3 -3
package/dist/Api.d.ts CHANGED
@@ -3,7 +3,7 @@ import { HubConnection } from '@microsoft/signalr';
3
3
  import { Options as KyOptions } from 'ky';
4
4
  import { LoginDc } from './__generated__/data-contracts';
5
5
  import { HttpClient } from './__generated__/HttpClient';
6
- import { Account, AccountPreview, BulkOperations, ClientSettings, External, Feedback, FileUpload, General, Geocode, IceRouter, Import, Layers, Names, Namespace, Notification, PortalSettings, Projects, ResourceCatalog, Resources, Scheduler, Security, Statistic, Styles, Tables, Tools } from './services';
6
+ import { Account, AccountPreview, BulkOperations, ClientSettings, External, Feedback, FileUpload, Filters, General, Geocode, IceRouter, Import, Layers, Names, Namespace, Notification, PortalSettings, Projects, ResourceCatalog, Resources, Scheduler, Security, Statistic, Styles, Tables, Tools } from './services';
7
7
  import { Print } from './services/Print';
8
8
  export declare type ApiParams = {
9
9
  url: string;
@@ -32,6 +32,7 @@ export declare class Api extends EventEmitter {
32
32
  readonly notification: Notification;
33
33
  readonly scheduler: Scheduler;
34
34
  readonly file: FileUpload;
35
+ readonly filters: Filters;
35
36
  readonly import: Import;
36
37
  readonly resources: Resources;
37
38
  readonly styles: Styles;
@@ -2,7 +2,7 @@ import { FileUploadResponse, UploadPreviewParams, UploadPreviewPayload } from '.
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class AccountPreviewService extends Service {
@@ -2,7 +2,7 @@ import { ChangeEmailParams, ChangePasswordPayload, ConfirmChangeEmailParams, Con
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class AccountService extends Service {
@@ -2,7 +2,7 @@ import { BatchResourcesAclDc, BulkOperationResultDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class BulkOperationsService extends Service {
@@ -2,7 +2,7 @@ import { GetConfigurationParams, GetConfigurationsListParams, PagedListConfigDc,
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class ClientSettingsService extends Service {
@@ -1,7 +1,7 @@
1
1
  import { Service } from './Service';
2
2
  /**
3
3
  * @title Spatial Processing Core API
4
- * @version v1.0.0
4
+ * @version 1.0.0
5
5
  * @baseUrl /sp
6
6
  */
7
7
  export declare class ExternalProvidersService extends Service {
@@ -2,7 +2,7 @@ import { FeedbackParams, FeedbackPayload, IncreaseResourcesLimitParams, MoreSymb
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class FeedbackService extends Service {
@@ -2,7 +2,7 @@ import { FilterCreationResponseDc, FilterDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class FiltersService extends Service {
@@ -2,7 +2,7 @@ import { FaviconParams, FunctionInfoDc, LogoParams, ServerInfoDc } from './data-
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class GeneralService extends Service {
@@ -2,7 +2,7 @@ import { GeocodeByPointParams, GeocodeParams, GeocodeResultDc, GeocodeSuggestRes
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class GeocodeService extends Service {
@@ -2,7 +2,7 @@ import { IceRouterResultDc, IceRouteTaskDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class IceRouterService extends Service {
@@ -2,7 +2,7 @@ import { ExternalLayerInfoDc, GetDataSchemaParams, GetExternalArcGisLayersParams
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class ImportService extends Service {
@@ -2,7 +2,7 @@ import { AccessControlListDc, AggregateAttributeParams, AggregationDataResultDc,
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class LayersService extends Service {
@@ -2,7 +2,7 @@ import { CreateNamespaceParams, GetNamespacesParams, ListResponseNamespaceInfoDc
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class NamespaceService extends Service {
@@ -2,7 +2,7 @@ import { SubscribeListOperationPayload, SubscribeOperationParams, UnsubscribeLis
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class NotificationService extends Service {
@@ -2,7 +2,7 @@ import { PrintPayload, PrintToHtmlPayload, UploadTemplateParams, UploadTemplateP
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class PrintService extends Service {
@@ -1,8 +1,8 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams5, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, ListResponseProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams2, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, ListResponseProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class ProjectsService extends Service {
@@ -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: DeleteResourcesParams5): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -2,7 +2,7 @@ import { CheckLimitsParams, CopyResourceResultDc, CopyResourcesPayload, Workspac
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class ResourceCatalogService extends Service {
@@ -2,7 +2,7 @@ import { CreateResourcePayload, CreateStorageParams, GetResourceParams, GetUrlPa
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class S3Service extends Service {
@@ -2,7 +2,7 @@ import { AggregateTaskParametersDc, AvailabilityAreaTaskDc, BufferTaskParameters
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class SchedulerService extends Service {
@@ -2,7 +2,7 @@ import { FindUserByNameByRolesParams, FindUserByNameParams, GetPolicyListParams,
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class SecurityService extends Service {
@@ -2,7 +2,7 @@ import { DeleteFileParams, DownloadFileParams, FileUploadInfoDc, FileUploadRespo
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class StaticContentService extends Service {
@@ -1,8 +1,8 @@
1
- import { ClassifyDc, ClassifyParams6, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams3, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class StatisticService extends Service {
@@ -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: ClassifyParams3): Promise<ClassifyDc>;
31
31
  /**
32
32
  * No description
33
33
  *
@@ -2,7 +2,7 @@ import { AddFontPayload, RemoveFontParams, StyleCreationResponseDc, StyleDc } fr
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class StyleService extends Service {
@@ -1,8 +1,8 @@
1
- import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams10, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, ListResponseIEnumerable1, MapTableInfoDc, MapTableParams, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
1
+ import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, ListResponseIEnumerable1, MapTableInfoDc, MapTableParams, 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
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class TablesService extends Service {
@@ -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: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -2,7 +2,7 @@ import { GetAllParams, PagedListTagInfoDc } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class TagsService extends Service {
@@ -1,7 +1,7 @@
1
1
  import { Service } from './Service';
2
2
  /**
3
3
  * @title Spatial Processing Core API
4
- * @version v1.0.0
4
+ * @version 1.0.0
5
5
  * @baseUrl /sp
6
6
  */
7
7
  export declare class ToolsService extends Service {
@@ -2,7 +2,7 @@ import { GetCapabilitiesParams, GetPublicCapabilitiesParams, GetSharedCapabiliti
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class WfsServerService extends Service {
@@ -1,8 +1,8 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams10, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams3, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class WmsServerService extends Service {
@@ -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: GetCapabilitiesParams10): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams3): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -2,7 +2,7 @@ import { ProcessRequestParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
- * @version v1.0.0
5
+ * @version 1.0.0
6
6
  * @baseUrl /sp
7
7
  */
8
8
  export declare class WmtsService extends Service {
@@ -18,7 +18,7 @@ export declare type AggregateTaskParametersDc = FeatureTaskParametersDc & {
18
18
  };
19
19
  export declare type AggregatedClusterSymbolDc = SymbolDc & {
20
20
  type?: string;
21
- pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
21
+ pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
22
22
  gridSize?: number;
23
23
  fixedCenter?: boolean;
24
24
  aggregations?: Record<string, AggregationFunction>;
@@ -664,7 +664,7 @@ export interface ClassifyResultObject {
664
664
  export declare type ClusterSymbolDc = SymbolDc & {
665
665
  type?: string;
666
666
  labelSymbol?: PointLabelSymbolDc;
667
- singleObjectSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
667
+ singleObjectSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
668
668
  fillColor?: ParameterDcColor;
669
669
  strokeColor?: ParameterDcColor;
670
670
  strokeWidth?: CalculatedParameterDc;
@@ -887,7 +887,7 @@ export interface CompositeServiceInfoDc {
887
887
  */
888
888
  export declare type CompositeSymbolDc = SymbolDc & {
889
889
  type?: string;
890
- childSymbols?: (CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
890
+ childSymbols?: (CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc)[];
891
891
  };
892
892
  /**
893
893
  * Get configuration information.
@@ -946,6 +946,8 @@ DataSourceNotFound
946
946
  DuplicateColumns
947
947
 
948
948
  TableWithoutColumns
949
+
950
+ InvalidTableReferenceConfiguration
949
951
  */
950
952
  export declare enum ConfigurationErrorEnum {
951
953
  Unknown = "Unknown",
@@ -970,7 +972,8 @@ export declare enum ConfigurationErrorEnum {
970
972
  InvalidAttributeFormat = "InvalidAttributeFormat",
971
973
  DataSourceNotFound = "DataSourceNotFound",
972
974
  DuplicateColumns = "DuplicateColumns",
973
- TableWithoutColumns = "TableWithoutColumns"
975
+ TableWithoutColumns = "TableWithoutColumns",
976
+ InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
974
977
  }
975
978
  /**
976
979
  * SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
@@ -1443,6 +1446,8 @@ export interface FailedServiceInfoDc {
1443
1446
  * DuplicateColumns
1444
1447
  *
1445
1448
  * TableWithoutColumns
1449
+ *
1450
+ * InvalidTableReferenceConfiguration
1446
1451
  */
1447
1452
  errorType?: ConfigurationErrorEnum;
1448
1453
  /** The type of the resource. */
@@ -1674,7 +1679,7 @@ export interface FeatureSymbolDc {
1674
1679
  /** @format int32 */
1675
1680
  id: number;
1676
1681
  /** Feature symbol. */
1677
- definition?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
1682
+ definition?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
1678
1683
  image?: string;
1679
1684
  }
1680
1685
  /**
@@ -2041,10 +2046,7 @@ export interface ISpatialReference {
2041
2046
  dimensions?: number;
2042
2047
  datum?: IDatum;
2043
2048
  }
2044
- export interface IVector {
2045
- /** @format int32 */
2046
- dimensions?: number;
2047
- }
2049
+ export declare type IVector = object;
2048
2050
  /**
2049
2051
  * Attributes provides by router to describe route.
2050
2052
  */
@@ -2207,7 +2209,7 @@ export declare type LabelSymbolDc = SymbolDc & {
2207
2209
  };
2208
2210
  export declare type LastTrackSymbolDc = TrackSymbolBaseDc & {
2209
2211
  type?: string;
2210
- symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2212
+ symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2211
2213
  };
2212
2214
  /**
2213
2215
  * Information about the layer attributes and their configuration.
@@ -2637,7 +2639,7 @@ export declare type MultiPointDc = GeometryDc & {
2637
2639
  */
2638
2640
  export declare type MultipointSymbolDc = SymbolDc & {
2639
2641
  type?: string;
2640
- pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2642
+ pointSymbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
2641
2643
  };
2642
2644
  /**
2643
2645
  * Information about a namespace .
@@ -3202,6 +3204,20 @@ export interface Rectangle2 {
3202
3204
  center?: IVector;
3203
3205
  halfSize?: IVector;
3204
3206
  }
3207
+ /**
3208
+ * Types of table reference.
3209
+
3210
+ OneToMany
3211
+
3212
+ OneToOne
3213
+
3214
+ Intersect
3215
+ */
3216
+ export declare enum ReferenceJoinType {
3217
+ OneToMany = "OneToMany",
3218
+ OneToOne = "OneToOne",
3219
+ Intersect = "Intersect"
3220
+ }
3205
3221
  /**
3206
3222
  * Data contract for register new user.
3207
3223
  */
@@ -3896,7 +3912,7 @@ export interface StyleDc {
3896
3912
  */
3897
3913
  condition?: string;
3898
3914
  /** Symbol that is used to draw the features of the layer. */
3899
- symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3915
+ symbol?: CirclePointSymbolDc | CompositeSymbolDc | ImagePointSymbolDc | ImagePolygonSymbolDc | LabelSymbolDc | MaskedImagePointSymbolDc | MaskedImagePolygonSymbolDc | MultipointSymbolDc | PointLabelSymbolDc | PolygonCenterLabelSymbolDc | PolygonLabelSymbolDc | PolygonSymbolDc | PolylineLabelSymbolDc | PolylineSymbolDc | RasterSymbolDc | SimplePolylineSymbolDc | SquarePointSymbolDc | SvgPointSymbolDc | LastTrackSymbolDc | TracksSymbolDc | TrackSymbolBaseDc | AggregatedClusterSymbolDc | ClusterSymbolDc | HexGridSymbolDc | PolygonGridSymbolDc;
3900
3916
  /**
3901
3917
  * Child styles. Before rendering a feature, the children style conditions are checked. If none
3902
3918
  * of the child styles were applied, then the paren style is used to draw the feature.
@@ -3923,6 +3939,17 @@ export declare type StyledLayerServiceConfigurationDc = ServiceConfigurationBase
3923
3939
  style: StyleDc;
3924
3940
  baseServiceName: string;
3925
3941
  };
3942
+ /**
3943
+ * Svg point symbol.
3944
+ */
3945
+ export declare type SvgPointSymbolDc = SymbolDc & {
3946
+ type?: string;
3947
+ data?: string;
3948
+ width?: CalculatedParameterDc;
3949
+ height?: CalculatedParameterDc;
3950
+ offset?: CalculatedParameterDc[];
3951
+ angle?: CalculatedParameterDc;
3952
+ };
3926
3953
  /**
3927
3954
  * Feature symbol.
3928
3955
  */
@@ -3966,6 +3993,16 @@ export interface TableReferenceConfigurationDc {
3966
3993
  attributes: AttributeConfigurationDc[];
3967
3994
  /** Child related tables configurations. */
3968
3995
  tableReferences?: TableReferenceConfigurationDc[];
3996
+ /**
3997
+ * Types of table reference.
3998
+ *
3999
+ * OneToMany
4000
+ *
4001
+ * OneToOne
4002
+ *
4003
+ * Intersect
4004
+ */
4005
+ joinType?: ReferenceJoinType;
3969
4006
  }
3970
4007
  /**
3971
4008
  * Data storage that allows accessing features directly from the tables.
@@ -3975,7 +4012,7 @@ export declare type TableTaskDataStorageDc = BaseTaskDataStorageDc & {
3975
4012
  type?: string;
3976
4013
  };
3977
4014
  /**
3978
- * Provides data contract of SPCore.Security.Base.TagInfo.
4015
+ * Provides data contract of `TagInfo`/>.
3979
4016
  */
3980
4017
  export interface TagInfoDc {
3981
4018
  /** Name of the tag. */
@@ -3983,6 +4020,17 @@ export interface TagInfoDc {
3983
4020
  /** If sets true. */
3984
4021
  isSystem?: boolean;
3985
4022
  }
4023
+ /**
4024
+ * Task owner group.
4025
+
4026
+ my
4027
+
4028
+ all
4029
+ */
4030
+ export declare enum TaskGroup {
4031
+ My = "my",
4032
+ All = "all"
4033
+ }
3986
4034
  /**
3987
4035
  * Detailed information about a server task.
3988
4036
  */
@@ -4118,6 +4166,10 @@ export interface TaskStatusDataDc {
4118
4166
  * @format uuid
4119
4167
  */
4120
4168
  taskId?: string;
4169
+ /** Type of the task. */
4170
+ type?: string;
4171
+ /** User started task. */
4172
+ owner?: string;
4121
4173
  /**
4122
4174
  * Status of the server task.
4123
4175
  *
@@ -5517,7 +5569,7 @@ export interface GetProjectsListParams {
5517
5569
  tags?: string[];
5518
5570
  }
5519
5571
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5520
- export interface DeleteResourcesParams5 {
5572
+ export interface DeleteResourcesParams2 {
5521
5573
  /** Resource names. */
5522
5574
  names?: string[];
5523
5575
  }
@@ -5566,10 +5618,30 @@ export interface CreateStorageParams {
5566
5618
  storageName?: string;
5567
5619
  }
5568
5620
  export interface GetTaskListParams {
5569
- /** Filter the tasks by their owner names. */
5570
- owners?: string[];
5571
5621
  /** Comma separated list of the task statuses. Filters only the tasks with the given statuses. */
5572
- statuses?: string[];
5622
+ status?: ServerTaskStatus[];
5623
+ /** Filter the tasks by their ids. */
5624
+ id?: string[];
5625
+ /** Filter the tasks by owners. */
5626
+ owners?: string[];
5627
+ /**
5628
+ * Owner group.
5629
+ *
5630
+ * my
5631
+ *
5632
+ * all
5633
+ */
5634
+ group?: TaskGroup;
5635
+ /**
5636
+ * Takes tasks created before given date and time.
5637
+ * @format date-time
5638
+ */
5639
+ createdBefore?: string;
5640
+ /**
5641
+ * Takes tasks created after given date and time.
5642
+ * @format date-time
5643
+ */
5644
+ createdAfter?: string;
5573
5645
  /**
5574
5646
  * The first index to return.
5575
5647
  * @format int32
@@ -5673,7 +5745,7 @@ export interface StatisticsDbParams {
5673
5745
  /** Type of required statistic function. */
5674
5746
  types?: AggregationFunction[];
5675
5747
  }
5676
- export interface ClassifyParams6 {
5748
+ export interface ClassifyParams3 {
5677
5749
  /** Layer name. */
5678
5750
  name?: string;
5679
5751
  /** Attribute name. */
@@ -5768,7 +5840,7 @@ export interface GetTableListParams {
5768
5840
  acl?: string;
5769
5841
  }
5770
5842
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
5771
- export interface DeleteResourcesParams10 {
5843
+ export interface DeleteResourcesParams9 {
5772
5844
  /** Resource names. */
5773
5845
  names?: string[];
5774
5846
  }
@@ -5880,7 +5952,7 @@ export interface GetPublicCapabilitiesParams {
5880
5952
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
5881
5953
  AcceptFormats?: string[];
5882
5954
  }
5883
- export interface GetCapabilitiesParams10 {
5955
+ export interface GetCapabilitiesParams3 {
5884
5956
  /** Output format of service metadata. */
5885
5957
  Format?: string;
5886
5958
  /** Must be WMS. */
@@ -5905,10 +5977,8 @@ export interface GetMapParams {
5905
5977
  'BoundingBox.Width'?: number;
5906
5978
  /** @format double */
5907
5979
  'BoundingBox.Height'?: number;
5908
- /** @format int32 */
5909
- 'BoundingBox.Center.Dimensions'?: number;
5910
- /** @format int32 */
5911
- 'BoundingBox.HalfSize.Dimensions'?: number;
5980
+ 'BoundingBox.Center'?: IVector;
5981
+ 'BoundingBox.HalfSize'?: IVector;
5912
5982
  /**
5913
5983
  * Width in pixels of map picture.
5914
5984
  * @format int32
@@ -5974,10 +6044,8 @@ export interface GetFeatureInfoParams {
5974
6044
  'BoundingBox.Width'?: number;
5975
6045
  /** @format double */
5976
6046
  'BoundingBox.Height'?: number;
5977
- /** @format int32 */
5978
- 'BoundingBox.Center.Dimensions'?: number;
5979
- /** @format int32 */
5980
- 'BoundingBox.HalfSize.Dimensions'?: number;
6047
+ 'BoundingBox.Center'?: IVector;
6048
+ 'BoundingBox.HalfSize'?: IVector;
5981
6049
  /**
5982
6050
  * Width in pixels of map picture.
5983
6051
  * @format int32