@evergis/api 3.0.73 → 3.0.76

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.
package/dist/Api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Options as KyOptions } from 'ky';
2
2
  import { EventEmitter } from '@evergis/event-emitter';
3
- import { Account, External, ClientSettings, PortalSettings, FileUpload, General, Geocode, Import, Layers, Names, Namespace, Notification, Projects, ResourceCatalog, Resources, Scheduler, Security, Styles, Tables, Tools, AccountPreview, BulkOperations, IceRouter, Statistic } from './services';
3
+ import { Account, External, ClientSettings, PortalSettings, FileUpload, General, Geocode, Import, Layers, Names, Namespace, Notification, Projects, ResourceCatalog, Resources, Scheduler, Security, Styles, Tables, Tools, AccountPreview, BulkOperations, IceRouter, Statistic, Feedback } from './services';
4
4
  import { Print } from './services/Print';
5
5
  import { HttpClient } from './__generated__/HttpClient';
6
6
  import { LoginDc } from './__generated__/data-contracts';
@@ -48,6 +48,7 @@ export declare class Api extends EventEmitter {
48
48
  readonly bulk: BulkOperations;
49
49
  readonly iceRouter: IceRouter;
50
50
  readonly statistic: Statistic;
51
+ readonly feedback: Feedback;
51
52
  constructor({ url, wsUrl, http, urlPath, httpOptions }: ApiParams);
52
53
  init({ authParams, connectWs, initScheduler, fetchSettings, fetchUser, }: {
53
54
  authParams?: LoginDc;
@@ -1,4 +1,4 @@
1
- import { IncreaseResourcesLimitParams, MoreSymbolsParams } from './data-contracts';
1
+ import { FeedbackParams, FeedbackPayload, IncreaseResourcesLimitParams, MoreSymbolsParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -28,4 +28,15 @@ export declare class FeedbackService extends Service {
28
28
  * @response `200` Success
29
29
  */
30
30
  moreSymbols(query: MoreSymbolsParams): Promise<string[]>;
31
+ /**
32
+ * No description
33
+ *
34
+ * @tags Feedback
35
+ * @name Feedback
36
+ * @operationId FeedbackController_Feedback
37
+ * @summary Feedback request.
38
+ * @request POST:/feedback
39
+ * @response `200` Success
40
+ */
41
+ feedback(query: FeedbackParams, data: FeedbackPayload): Promise<string[]>;
31
42
  }
@@ -0,0 +1,42 @@
1
+ import { CreatePayload, FilterCreationResponseDc, UpdatePayload } 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 FiltersService extends Service {
9
+ /**
10
+ * No description
11
+ *
12
+ * @tags FiltersService
13
+ * @name Get
14
+ * @operationId FiltersServiceController_Get
15
+ * @summary Returns the filter by its id.
16
+ * @request GET:/filters/{id}
17
+ * @response `200` Success
18
+ */
19
+ get(id: string): Promise<string>;
20
+ /**
21
+ * No description
22
+ *
23
+ * @tags FiltersService
24
+ * @name Update
25
+ * @operationId FiltersServiceController_Update
26
+ * @summary Replaces a filter and gives it a new id.
27
+ * @request POST:/filters/{id}
28
+ * @response `200` Success
29
+ */
30
+ update(id: string, data: UpdatePayload): Promise<FilterCreationResponseDc>;
31
+ /**
32
+ * No description
33
+ *
34
+ * @tags FiltersService
35
+ * @name Create
36
+ * @operationId FiltersServiceController_Create
37
+ * @summary Creates a new filter.
38
+ * @request POST:/filters
39
+ * @response `200` Success
40
+ */
41
+ create(data: CreatePayload): Promise<FilterCreationResponseDc>;
42
+ }
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams6, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsListParams, IListResponse, ListResponseProjectInfoDc, ResourceDependenciesDc, ResourceInfoDc, ServiceInfoDc, SetPermissionsBatchBody, SetPermissionsBody, SetPreviewBody, SharedProjectInfoDc, UpdateProjectPayload } from './data-contracts';
1
+ import { AccessControlListDc, AddPermissionsBody, BulkOperationResultDc, CompositeServiceInfoDc, CreateProjectPayload, CreateShareProjectPayload, DeleteResourcesParams3, 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: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
85
+ deleteResources(query: DeleteResourcesParams3): Promise<BulkOperationResultDc[]>;
86
86
  /**
87
87
  * No description
88
88
  *
@@ -1,4 +1,4 @@
1
- import { ClassifyDc, ClassifyParams7, StatisticsDbParams, StatisticsDc } from './data-contracts';
1
+ import { ClassifyDc, ClassifyParams6, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
2
2
  import { Service } from './Service';
3
3
  /**
4
4
  * @title Spatial Processing Core API
@@ -24,8 +24,19 @@ export declare class StatisticService extends Service {
24
24
  * @name Classify
25
25
  * @operationId StatisticController_Classify
26
26
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
27
- * @request GET:/classify
27
+ * @request GET:/statistics/classify
28
28
  * @response `200` Success
29
29
  */
30
- classify(query: ClassifyParams7): Promise<ClassifyDc>;
30
+ classify(query: ClassifyParams6): Promise<ClassifyDc>;
31
+ /**
32
+ * No description
33
+ *
34
+ * @tags Statistic
35
+ * @name SumOfProduct
36
+ * @operationId StatisticController_SumOfProduct
37
+ * @summary Sum of product.
38
+ * @request GET:/statistics/sumOfProduct
39
+ * @response `200` Success
40
+ */
41
+ sumOfProduct(query: SumOfProductParams): Promise<StatisticsDc>;
31
42
  }
@@ -1,4 +1,4 @@
1
- import { AccessControlListDc, AddPermissionsInput, BulkOperationResultDc, CreateTablePayload, DeleteResourcesParams2, 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, DeleteResourcesParams1, 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: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
52
+ deleteResources(query: DeleteResourcesParams1): Promise<BulkOperationResultDc[]>;
53
53
  /**
54
54
  * No description
55
55
  *
@@ -1,4 +1,4 @@
1
- import { GetCapabilities1Params, GetCapabilitiesParams8, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
1
+ import { GetCapabilities1Params, GetCapabilitiesParams5, 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: GetCapabilitiesParams8): Promise<void>;
19
+ getCapabilities(query: GetCapabilitiesParams5): Promise<void>;
20
20
  /**
21
21
  * No description
22
22
  *
@@ -312,7 +312,7 @@ export interface AttributeDefinitionDc {
312
312
  */
313
313
  export interface AttributeDistinctDc {
314
314
  /** Attribute value. */
315
- attributeValue: string;
315
+ value: string;
316
316
  /**
317
317
  * Count of this attribute value at table.
318
318
  * @format int64
@@ -1762,6 +1762,20 @@ export interface FilterCopyTaskParametersDc {
1762
1762
  /** Storage that is to be used as a target for writing the task result. */
1763
1763
  target: BaseTaskDataStorageDc;
1764
1764
  }
1765
+ /**
1766
+ * Server response for the creation of a filter in filter service.
1767
+ */
1768
+ export interface FilterCreationResponseDc {
1769
+ /** Id of the filter. */
1770
+ id?: string;
1771
+ }
1772
+ /**
1773
+ * Provides filter data contract.
1774
+ */
1775
+ export interface FilterDc {
1776
+ /** Filter string to save. */
1777
+ filterString: string;
1778
+ }
1765
1779
  /**
1766
1780
  * Sets whether font should be styled.
1767
1781
  */
@@ -2158,6 +2172,8 @@ export interface ImagePointSymbolDc {
2158
2172
  export interface ImportDataSchema {
2159
2173
  /** List of layers in the data-set. */
2160
2174
  layers: ImportLayerDataSchema[];
2175
+ /** Importing file type. */
2176
+ type: string;
2161
2177
  }
2162
2178
  /**
2163
2179
  * Schema of a layer in an imported file.
@@ -2346,6 +2362,8 @@ export interface LayerModelDc {
2346
2362
  condition?: string;
2347
2363
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
2348
2364
  styleId?: string;
2365
+ /** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
2366
+ dataFilterId?: string;
2349
2367
  }
2350
2368
  /**
2351
2369
  * The description of the layer service as a server task data storage.
@@ -3333,6 +3351,8 @@ export interface PostgresTileCatalogServiceConfigurationDc {
3333
3351
  * @format int32
3334
3352
  */
3335
3353
  maxLodLevel?: number;
3354
+ /** IsCogLayer. */
3355
+ isCogLayer?: boolean;
3336
3356
  /** Name of the service. */
3337
3357
  name: string;
3338
3358
  /** Human friendly name of the service. */
@@ -3914,6 +3934,16 @@ export interface RoutingProviderInfoDc {
3914
3934
  type?: string;
3915
3935
  /** Routing profile (e.g. car, walking, bicycle etc.) */
3916
3936
  profile?: string;
3937
+ /**
3938
+ * Timeout in seconds.
3939
+ * @format int32
3940
+ */
3941
+ timeout?: number;
3942
+ /**
3943
+ * Max points in single batch.
3944
+ * @format int32
3945
+ */
3946
+ maxPointsInBatch?: number;
3917
3947
  }
3918
3948
  /**
3919
3949
  * ScaleBar element data contract.
@@ -5360,6 +5390,8 @@ export interface UploadRasterTaskParametersDc {
5360
5390
  maxZoomLevel: number;
5361
5391
  /** Get geometry from bbox or polygonize. */
5362
5392
  polygonize?: boolean;
5393
+ /** Import as COG. */
5394
+ useCog?: boolean;
5363
5395
  type?: string;
5364
5396
  }
5365
5397
  /**
@@ -5640,6 +5672,28 @@ export interface MoreSymbolsParams {
5640
5672
  /** Request justification. */
5641
5673
  Justification?: string;
5642
5674
  }
5675
+ export interface FeedbackPayload {
5676
+ /** Attachments. */
5677
+ Attachments?: File[];
5678
+ }
5679
+ export interface FeedbackParams {
5680
+ /** Name. */
5681
+ Name?: string;
5682
+ /** Phone number. */
5683
+ Phone?: string;
5684
+ /** Email address. */
5685
+ Email?: string;
5686
+ /** Message text. */
5687
+ Message?: string;
5688
+ }
5689
+ /**
5690
+ * Provides filter data contract.
5691
+ */
5692
+ export declare type UpdatePayload = FilterDc;
5693
+ /**
5694
+ * Provides filter data contract.
5695
+ */
5696
+ export declare type CreatePayload = FilterDc;
5643
5697
  export interface GeocodeParams {
5644
5698
  /** Input address. */
5645
5699
  address?: string;
@@ -5686,26 +5740,10 @@ export interface GetDataSchemaParams {
5686
5740
  export interface GetExcelDataSchemaParams {
5687
5741
  /** Id of the excel file in the temporary static storage. */
5688
5742
  fileId?: string;
5689
- /**
5690
- * Attribute name row number.
5691
- * @format int32
5692
- */
5693
- attributeNameRowNumber?: number;
5694
- /** Coord source fields. */
5695
- coordSourceFields?: string[];
5696
- /**
5697
- * Alias row number.
5698
- * @format int32
5699
- */
5700
- aliasRowNumber?: number;
5701
5743
  }
5702
5744
  export interface GetCsvDataSchemaParams {
5703
5745
  /** Id of the csv file in the temporary static storage. */
5704
5746
  fileId?: string;
5705
- /** If set true - second row will be read as alias row. */
5706
- containsAliasRow?: boolean;
5707
- /** Coord source fields. */
5708
- coordSourceFields?: string[];
5709
5747
  }
5710
5748
  export interface GetKmlDataSchemaParams {
5711
5749
  /** Id of the kml file in the temporary static storage. */
@@ -5817,6 +5855,8 @@ export declare type UpdateCompositeServicePayload = CompositeServiceConfiguratio
5817
5855
  export interface GetFeaturesParams {
5818
5856
  /** Sets features filtering query. */
5819
5857
  query?: string;
5858
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
5859
+ dataFilterId?: string;
5820
5860
  /**
5821
5861
  * Features count have to skip.
5822
5862
  * @format int32
@@ -5967,6 +6007,8 @@ export interface GetLayerImageParams {
5967
6007
  opacity?: number;
5968
6008
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
5969
6009
  styleId?: string;
6010
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
6011
+ dataFilterId?: string;
5970
6012
  /** Full name of the layer. */
5971
6013
  name: string;
5972
6014
  }
@@ -6056,6 +6098,8 @@ export interface GetByGeometryGetParams {
6056
6098
  query?: string;
6057
6099
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
6058
6100
  styleId?: string;
6101
+ /** Id of the override data filter to apply to the layer. If not set, the layer original data filter is used. */
6102
+ dataFilterId?: string;
6059
6103
  /** The name of the layer. */
6060
6104
  name: string;
6061
6105
  }
@@ -6190,6 +6234,8 @@ export interface SelectFeaturesParams {
6190
6234
  query?: string[];
6191
6235
  /** Id of the override style to apply to the layer. If not set, the layer original style is used. */
6192
6236
  styles?: string[];
6237
+ /** Id of the data filter to override data filter of the layer. If not set, the layer original data filter is used. */
6238
+ filters?: string[];
6193
6239
  /** If set to true, the response will include the specific symbol for each feature. */
6194
6240
  includeSymbols?: boolean;
6195
6241
  }
@@ -6302,7 +6348,7 @@ export interface GetProjectsListParams {
6302
6348
  */
6303
6349
  export declare type CreateProjectPayload = ExtendedProjectInfoDc | ResourceInfoDc | ProjectInfoDc;
6304
6350
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
6305
- export interface DeleteResourcesParams6 {
6351
+ export interface DeleteResourcesParams3 {
6306
6352
  /** Resource names. */
6307
6353
  names?: string[];
6308
6354
  }
@@ -6486,7 +6532,7 @@ export interface DeleteFileParams {
6486
6532
  }
6487
6533
  export interface StatisticsDbParams {
6488
6534
  /** Layer name. */
6489
- layerName?: string;
6535
+ name?: string;
6490
6536
  /** Attribute name. */
6491
6537
  attribute?: string;
6492
6538
  /** Condition. */
@@ -6494,9 +6540,9 @@ export interface StatisticsDbParams {
6494
6540
  /** Type of required statistic function. */
6495
6541
  types?: AggregationFunction[];
6496
6542
  }
6497
- export interface ClassifyParams7 {
6543
+ export interface ClassifyParams6 {
6498
6544
  /** Layer name. */
6499
- layerName?: string;
6545
+ name?: string;
6500
6546
  /** Attribute name. */
6501
6547
  attribute?: string;
6502
6548
  /** Layer condition. */
@@ -6532,6 +6578,14 @@ export interface ClassifyParams7 {
6532
6578
  */
6533
6579
  attributeType?: ClassifyAttributeType;
6534
6580
  }
6581
+ export interface SumOfProductParams {
6582
+ /** Layer name. */
6583
+ name?: string;
6584
+ /** Attributes to aggregate. */
6585
+ attributes?: string[];
6586
+ /** Layer condition. */
6587
+ condition?: string;
6588
+ }
6535
6589
  /**
6536
6590
  * Feature layer rendering style.
6537
6591
  */
@@ -6587,7 +6641,7 @@ export interface GetTableListParams {
6587
6641
  */
6588
6642
  export declare type CreateTablePayload = DetailedTableInfoDc | ResourceInfoDc | TableInfoDc;
6589
6643
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
6590
- export interface DeleteResourcesParams2 {
6644
+ export interface DeleteResourcesParams1 {
6591
6645
  /** Resource names. */
6592
6646
  names?: string[];
6593
6647
  }
@@ -6692,7 +6746,7 @@ export interface GetCapabilitiesParams {
6692
6746
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
6693
6747
  AcceptFormats?: string[];
6694
6748
  }
6695
- export interface GetCapabilitiesParams8 {
6749
+ export interface GetCapabilitiesParams5 {
6696
6750
  /** Output format of service metadata. */
6697
6751
  Format?: string;
6698
6752
  /** Must be WMS. */
@@ -5548,14 +5548,30 @@ let StatisticService = /*#__PURE__*/function (_Service) {
5548
5548
  * @name Classify
5549
5549
  * @operationId StatisticController_Classify
5550
5550
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
5551
- * @request GET:/classify
5551
+ * @request GET:/statistics/classify
5552
5552
  * @response `200` Success
5553
5553
  */
5554
5554
 
5555
5555
  }, {
5556
5556
  key: "classify",
5557
5557
  value: function classify(query) {
5558
- return this.http.get("/classify", query).json();
5558
+ return this.http.get("/statistics/classify", query).json();
5559
+ }
5560
+ /**
5561
+ * No description
5562
+ *
5563
+ * @tags Statistic
5564
+ * @name SumOfProduct
5565
+ * @operationId StatisticController_SumOfProduct
5566
+ * @summary Sum of product.
5567
+ * @request GET:/statistics/sumOfProduct
5568
+ * @response `200` Success
5569
+ */
5570
+
5571
+ }, {
5572
+ key: "sumOfProduct",
5573
+ value: function sumOfProduct(query) {
5574
+ return this.http.get("/statistics/sumOfProduct", query).json();
5559
5575
  }
5560
5576
  }]);
5561
5577
 
@@ -5588,6 +5604,97 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
5588
5604
  return Statistic;
5589
5605
  }(StatisticService);
5590
5606
 
5607
+ /**
5608
+ * @title Spatial Processing Core API
5609
+ * @version v0.6.0
5610
+ * @baseUrl /sp
5611
+ */
5612
+
5613
+ let FeedbackService = /*#__PURE__*/function (_Service) {
5614
+ _inherits(FeedbackService, _Service);
5615
+
5616
+ var _super = /*#__PURE__*/_createSuper(FeedbackService);
5617
+
5618
+ function FeedbackService() {
5619
+ _classCallCheck(this, FeedbackService);
5620
+
5621
+ return _super.apply(this, arguments);
5622
+ }
5623
+
5624
+ _createClass(FeedbackService, [{
5625
+ key: "increaseResourcesLimit",
5626
+ value:
5627
+ /**
5628
+ * No description
5629
+ *
5630
+ * @tags Feedback
5631
+ * @name IncreaseResourcesLimit
5632
+ * @operationId FeedbackController_IncreaseResourcesLimit
5633
+ * @summary Increase resources limit request.
5634
+ * @request POST:/feedback/limits
5635
+ * @response `200` Success
5636
+ */
5637
+ function increaseResourcesLimit(query) {
5638
+ return this.http.post("/feedback/limits", null, query).json();
5639
+ }
5640
+ /**
5641
+ * No description
5642
+ *
5643
+ * @tags Feedback
5644
+ * @name MoreSymbols
5645
+ * @operationId FeedbackController_MoreSymbols
5646
+ * @summary More symbols request.
5647
+ * @request POST:/feedback/symbol
5648
+ * @response `200` Success
5649
+ */
5650
+
5651
+ }, {
5652
+ key: "moreSymbols",
5653
+ value: function moreSymbols(query) {
5654
+ return this.http.post("/feedback/symbol", null, query).json();
5655
+ }
5656
+ /**
5657
+ * No description
5658
+ *
5659
+ * @tags Feedback
5660
+ * @name Feedback
5661
+ * @operationId FeedbackController_Feedback
5662
+ * @summary Feedback request.
5663
+ * @request POST:/feedback
5664
+ * @response `200` Success
5665
+ */
5666
+
5667
+ }, {
5668
+ key: "feedback",
5669
+ value: function feedback(query, data) {
5670
+ return this.http.post("/feedback", toFormData(data), query).json();
5671
+ }
5672
+ }]);
5673
+
5674
+ return FeedbackService;
5675
+ }(Service);
5676
+
5677
+ let Feedback = /*#__PURE__*/function (_FeedbackService) {
5678
+ _inherits(Feedback, _FeedbackService);
5679
+
5680
+ var _super = /*#__PURE__*/_createSuper(Feedback);
5681
+
5682
+ function Feedback() {
5683
+ _classCallCheck(this, Feedback);
5684
+
5685
+ return _super.apply(this, arguments);
5686
+ }
5687
+
5688
+ _createClass(Feedback, [{
5689
+ key: "postFeedback",
5690
+ value: function postFeedback(query, data) {
5691
+ return this.feedback(query, data);
5692
+ }
5693
+ }]);
5694
+
5695
+ return Feedback;
5696
+ }(FeedbackService);
5697
+
5591
5698
  /**
5592
5699
  * @title Spatial Processing Core API
5593
5700
  * @version v0.6.0
@@ -5803,6 +5910,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
5803
5910
  _this.portalSettings = new PortalSettings(_this.http);
5804
5911
  _this.iceRouter = new IceRouter(_this.http);
5805
5912
  _this.statistic = new Statistic(_this.http);
5913
+ _this.feedback = new Feedback(_this.http);
5806
5914
  _this.names = new Names({
5807
5915
  account: _this.account
5808
5916
  });
@@ -6479,6 +6587,7 @@ exports.ClientSettings = ClientSettings;
6479
6587
  exports.EvergisDynamicLayer = EvergisDynamicLayer;
6480
6588
  exports.EvergisTileLayer = EvergisTileLayer;
6481
6589
  exports.External = External;
6590
+ exports.Feedback = Feedback;
6482
6591
  exports.FileUpload = FileUpload;
6483
6592
  exports.GEOCODE_PROVIDER = GEOCODE_PROVIDER;
6484
6593
  exports.General = General;