@evergis/api 4.1.16 → 4.1.18

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.
@@ -101,5 +101,5 @@ export declare class CamerasService extends Service {
101
101
  * @secure
102
102
  * @response `200` OK
103
103
  */
104
- getLivePreviewStream({ cameraId, ...query }: GetLivePreviewStreamParams): Promise<IAsyncEnumerableLivePreviewDc>;
104
+ getLivePreviewStream({ cameraId, ...query }: GetLivePreviewStreamParams): Promise<object>;
105
105
  }
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { AccessControlListDc, CatalogResourceDc, CopyResourceResultDc, CopyResourcesPayload, CreateDirectoryDc, CreateFile1Payload, CreateFilePayload, CreateSymlinkDc, GetTagsParams, ListResourcesDc, MoveResourceDc, PagedResourcesListDc, PagedTagsListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, ResourceParentDc, SetPermissionsPayload } from './data-contracts';
2
+ import { AccessControlListDc, CatalogResourceDc, CopyResourceResultDc, CopyResourcesPayload, CreateDirectoryDc, CreateFile1Payload, CreateFilePayload, CreateSymlinkDc, GetByPathDc, GetTagsParams, ListResourcesDc, MoveResourceDc, PagedResourcesListDc, PagedTagsListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, ResourceParentDc, SetPermissionsPayload, ZipExtractRequestDc } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -150,6 +150,18 @@ export declare class CatalogService extends Service {
150
150
  * @response `200` OK
151
151
  */
152
152
  getResourceByPath(path: string): Promise<CatalogResourceDc>;
153
+ /**
154
+ * No description
155
+ *
156
+ * @tags Catalog
157
+ * @name PostGetResourceByPath
158
+ * @operationId CatalogController_PostGetResourceByPath
159
+ * @summary Get resource with given path.
160
+ * @request POST:/resources/getByPath
161
+ * @secure
162
+ * @response `200` OK
163
+ */
164
+ postGetResourceByPath(data: GetByPathDc): Promise<CatalogResourceDc>;
153
165
  /**
154
166
  * No description
155
167
  *
@@ -270,4 +282,16 @@ export declare class CatalogService extends Service {
270
282
  * @response `200` OK
271
283
  */
272
284
  copyResources(data: CopyResourcesPayload): Promise<CopyResourceResultDc[]>;
285
+ /**
286
+ * No description
287
+ *
288
+ * @tags Catalog
289
+ * @name ExtractZipArchive
290
+ * @operationId CatalogController_ExtractZipArchive
291
+ * @summary Extract zip archive.
292
+ * @request POST:/resources/zip/extract
293
+ * @secure
294
+ * @response `200` OK
295
+ */
296
+ extractZipArchive(data: ZipExtractRequestDc): Promise<void>;
273
297
  }
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteServiceConfigurationDc, ServiceInfoDc, TileCatalogServiceInfoDc, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
2
+ import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, LinearServiceConfigurationDc, NetCdfMetaDc, PagedBulkFeaturesListDc, PagedFeaturesListDc, PbfServiceConfigurationDc, PbfServiceInfoDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, PublishProxyServicePayload, PythonServiceConfigurationDc, PythonServiceInfoDc, QueryLayerServiceConfigurationDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceConfigurationDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, ResourceInfoDc, RouteServiceConfigurationDc, ServiceInfoDc, TileCatalogServiceInfoDc, UpdateFeaturePayload, UpdateProxyServicePayload, ValidateExpressionParams } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -305,7 +305,7 @@ export declare class LayersService extends Service {
305
305
  * @secure
306
306
  * @response `200` OK
307
307
  */
308
- createFeatures(name: string, data: CreateFeaturesPayload): Promise<LayerUpdateInfoDc>;
308
+ createFeatures({ name, ...query }: CreateFeaturesParams, data: CreateFeaturesPayload): Promise<LayerUpdateInfoDc>;
309
309
  /**
310
310
  * No description
311
311
  *
@@ -1197,6 +1197,23 @@ export declare enum ConfigurationType {
1197
1197
  Default = "Default",
1198
1198
  DevConfiguration = "DevConfiguration"
1199
1199
  }
1200
+ /**
1201
+ *
1202
+
1203
+ Skip
1204
+
1205
+ Overwrite
1206
+
1207
+ GenerateUnique
1208
+
1209
+ ThrowError
1210
+ */
1211
+ export declare enum ConflictResolutionStrategy {
1212
+ Skip = "Skip",
1213
+ Overwrite = "Overwrite",
1214
+ GenerateUnique = "GenerateUnique",
1215
+ ThrowError = "ThrowError"
1216
+ }
1200
1217
  /**
1201
1218
  * Describes resource to copy.
1202
1219
  */
@@ -1353,7 +1370,7 @@ export interface CreateSymlinkDc {
1353
1370
  /** Symlink name. */
1354
1371
  name: string;
1355
1372
  /** System name. */
1356
- systemName: string;
1373
+ systemName?: string;
1357
1374
  /** Target resource. */
1358
1375
  targetResourceId: string;
1359
1376
  /** Description of the file. */
@@ -1367,16 +1384,6 @@ export interface CreateSymlinkDc {
1367
1384
  * Data contract for create new user.
1368
1385
  */
1369
1386
  export interface CreateUserDc {
1370
- /** First name. */
1371
- first_name?: string;
1372
- /** Last name. */
1373
- last_name?: string;
1374
- /** Patronymic. */
1375
- patronymic?: string;
1376
- /** Phone number. */
1377
- phone?: string;
1378
- /** Has newsletter subscription. */
1379
- is_subscribed?: boolean;
1380
1387
  /** Whether to open the last used project when opening a client. */
1381
1388
  is_open_last_project?: boolean;
1382
1389
  /** Is active. */
@@ -1394,8 +1401,20 @@ export interface CreateUserDc {
1394
1401
  * @format email
1395
1402
  */
1396
1403
  email?: string;
1404
+ /** Phone number. */
1405
+ phone?: string;
1397
1406
  /** Password. */
1398
1407
  password?: string;
1408
+ /** First name. */
1409
+ first_name?: string;
1410
+ /** Last name. */
1411
+ last_name?: string;
1412
+ /** Patronymic. */
1413
+ patronymic?: string;
1414
+ /** Gets or sets company. */
1415
+ company?: string;
1416
+ /** Has newsletter subscription. */
1417
+ is_subscribed?: boolean;
1399
1418
  }
1400
1419
  /**
1401
1420
  * Create view from query layer data contract.
@@ -2514,6 +2533,13 @@ export interface GetBulkFilteredFeaturesCountDc {
2514
2533
  /** Filter query geometries. */
2515
2534
  geometries?: QueryGeometryDc[];
2516
2535
  }
2536
+ /**
2537
+ * Get resource by path request data.
2538
+ */
2539
+ export interface GetByPathDc {
2540
+ /** Resource path. */
2541
+ path: string;
2542
+ }
2517
2543
  /**
2518
2544
  * Get classified attribute values data contract.
2519
2545
  */
@@ -2690,6 +2716,7 @@ export interface GetSumOfProductDc {
2690
2716
  /** Filter query geometries. */
2691
2717
  geometries?: QueryGeometryDc[];
2692
2718
  }
2719
+ export type IAsyncEnumerableLivePreviewDc = object;
2693
2720
  /**
2694
2721
  * Data schema of a file for import.
2695
2722
  */
@@ -2903,6 +2930,8 @@ export interface ListResourcesDc {
2903
2930
  types?: ResourceTypeFilter[];
2904
2931
  /** Filter by set of roles permissions. */
2905
2932
  aclFilter?: Record<string, Permissions>;
2933
+ /** Search mode. */
2934
+ searchMode?: boolean;
2906
2935
  }
2907
2936
  /**
2908
2937
  * Tile LOD structure.
@@ -2949,7 +2978,7 @@ export interface LoginResultDc {
2949
2978
  }
2950
2979
  /**
2951
2980
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
2952
-
2981
+
2953
2982
  SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
2954
2983
  */
2955
2984
  export interface MapTableInfoDc {
@@ -3942,6 +3971,20 @@ export type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
3942
3971
  /** Gets or sets method. */
3943
3972
  method?: string | null;
3944
3973
  };
3974
+ /**
3975
+ * Stream quality.
3976
+
3977
+ Low
3978
+
3979
+ Medium
3980
+
3981
+ High
3982
+ */
3983
+ export declare enum Quality {
3984
+ Low = "Low",
3985
+ Medium = "Medium",
3986
+ High = "High"
3987
+ }
3945
3988
  /**
3946
3989
  * Query geometry data contract.
3947
3990
  */
@@ -4422,8 +4465,20 @@ export interface RegisterUserDc {
4422
4465
  * @format email
4423
4466
  */
4424
4467
  email?: string;
4468
+ /** Phone number. */
4469
+ phone?: string;
4425
4470
  /** Password. */
4426
4471
  password?: string;
4472
+ /** First name. */
4473
+ first_name?: string;
4474
+ /** Last name. */
4475
+ last_name?: string;
4476
+ /** Patronymic. */
4477
+ patronymic?: string;
4478
+ /** Gets or sets company. */
4479
+ company?: string;
4480
+ /** Has newsletter subscription. */
4481
+ is_subscribed?: boolean;
4427
4482
  }
4428
4483
  /**
4429
4484
  *
@@ -4785,6 +4840,8 @@ File
4785
4840
  DataSource
4786
4841
 
4787
4842
  TaskPrototype
4843
+
4844
+ Directory
4788
4845
  */
4789
4846
  export declare enum ResourceTypeFilter {
4790
4847
  Map = "Map",
@@ -4795,7 +4852,8 @@ export declare enum ResourceTypeFilter {
4795
4852
  RemoteTileService = "RemoteTileService",
4796
4853
  File = "File",
4797
4854
  DataSource = "DataSource",
4798
- TaskPrototype = "TaskPrototype"
4855
+ TaskPrototype = "TaskPrototype",
4856
+ Directory = "Directory"
4799
4857
  }
4800
4858
  export declare enum ResourceTypeLink {
4801
4859
  Table = "tables",
@@ -6239,8 +6297,6 @@ export type UpdateTableDc = TableInfoDc & {
6239
6297
  * UpdateTaskPrototypeDto.
6240
6298
  */
6241
6299
  export interface UpdateTaskPrototypeDto {
6242
- /** SubTaskSettings. */
6243
- subTaskSettings?: SubTaskSettingsDto[];
6244
6300
  /** Enabled. */
6245
6301
  enabled?: boolean;
6246
6302
  /** StartIfPreviousError. */
@@ -6261,20 +6317,8 @@ export interface UpdateTaskPrototypeDto {
6261
6317
  export interface UpdateUserDc {
6262
6318
  /** Gets or sets location. */
6263
6319
  location?: string;
6264
- /** Gets or sets company. */
6265
- company?: string;
6266
6320
  /** Gets or sets position. */
6267
6321
  position?: string;
6268
- /** First name. */
6269
- first_name?: string;
6270
- /** Last name. */
6271
- last_name?: string;
6272
- /** Patronymic. */
6273
- patronymic?: string;
6274
- /** Phone number. */
6275
- phone?: string;
6276
- /** Has newsletter subscription. */
6277
- is_subscribed?: boolean;
6278
6322
  /** Whether to open the last used project when opening a client. */
6279
6323
  is_open_last_project?: boolean;
6280
6324
  /** Is active. */
@@ -6292,8 +6336,20 @@ export interface UpdateUserDc {
6292
6336
  * @format email
6293
6337
  */
6294
6338
  email?: string;
6339
+ /** Phone number. */
6340
+ phone?: string;
6295
6341
  /** Password. */
6296
6342
  password?: string;
6343
+ /** First name. */
6344
+ first_name?: string;
6345
+ /** Last name. */
6346
+ last_name?: string;
6347
+ /** Patronymic. */
6348
+ patronymic?: string;
6349
+ /** Gets or sets company. */
6350
+ company?: string;
6351
+ /** Has newsletter subscription. */
6352
+ is_subscribed?: boolean;
6297
6353
  }
6298
6354
  /**
6299
6355
  * Set used project.
@@ -6683,6 +6739,31 @@ export interface WorkspaceLimitsDc {
6683
6739
  */
6684
6740
  currentProjectCount?: number;
6685
6741
  }
6742
+ /**
6743
+ * Zip extraction request.
6744
+ */
6745
+ export interface ZipExtractRequestDc {
6746
+ /** Zip resource id. */
6747
+ resourceId: string;
6748
+ /** Target parent resource id. */
6749
+ targetParentId?: string;
6750
+ /** If true delete archive after extraction. */
6751
+ deleteZipAfterExtraction?: boolean;
6752
+ /**
6753
+ *
6754
+ *
6755
+ * Skip
6756
+ *
6757
+ * Overwrite
6758
+ *
6759
+ * GenerateUnique
6760
+ *
6761
+ * ThrowError
6762
+ */
6763
+ conflictStrategy?: ConflictResolutionStrategy;
6764
+ /** Is true extract nested archives. */
6765
+ extractNestedArchives?: boolean;
6766
+ }
6686
6767
  export interface GetUsersParams {
6687
6768
  /** String filter for the user (uses % and _ wild cards like SQL). */
6688
6769
  filter?: string;
@@ -7379,6 +7460,15 @@ export interface DeleteFeatureParams {
7379
7460
  name: string;
7380
7461
  }
7381
7462
  export type CreateFeaturesPayload = FeatureDc[];
7463
+ export interface CreateFeaturesParams {
7464
+ /**
7465
+ * Allow additional atributes.
7466
+ * @default false
7467
+ */
7468
+ allowAdditionalAttributes?: boolean;
7469
+ /** Full name of the layer. */
7470
+ name: string;
7471
+ }
7382
7472
  export type UpdateFeaturePayload = UpdateFeatureDc[];
7383
7473
  export interface GetByIdParams {
7384
7474
  /**
package/dist/api.esm.js CHANGED
@@ -1588,6 +1588,20 @@ class CatalogService extends Service {
1588
1588
  getResourceByPath(path) {
1589
1589
  return this.http.get(`/resources/getByPath/${path}`).json();
1590
1590
  }
1591
+ /**
1592
+ * No description
1593
+ *
1594
+ * @tags Catalog
1595
+ * @name PostGetResourceByPath
1596
+ * @operationId CatalogController_PostGetResourceByPath
1597
+ * @summary Get resource with given path.
1598
+ * @request POST:/resources/getByPath
1599
+ * @secure
1600
+ * @response `200` OK
1601
+ */
1602
+ postGetResourceByPath(data) {
1603
+ return this.http.post(`/resources/getByPath`, data).json();
1604
+ }
1591
1605
  /**
1592
1606
  * No description
1593
1607
  *
@@ -1728,6 +1742,20 @@ class CatalogService extends Service {
1728
1742
  copyResources(data) {
1729
1743
  return this.http.post(`/resources/copy`, data).json();
1730
1744
  }
1745
+ /**
1746
+ * No description
1747
+ *
1748
+ * @tags Catalog
1749
+ * @name ExtractZipArchive
1750
+ * @operationId CatalogController_ExtractZipArchive
1751
+ * @summary Extract zip archive.
1752
+ * @request POST:/resources/zip/extract
1753
+ * @secure
1754
+ * @response `200` OK
1755
+ */
1756
+ extractZipArchive(data) {
1757
+ return this.http.post(`/resources/zip/extract`, data).then(() => { });
1758
+ }
1731
1759
  }
1732
1760
 
1733
1761
  class FileUpload extends CatalogService {
@@ -3148,8 +3176,8 @@ class LayersService extends Service {
3148
3176
  * @secure
3149
3177
  * @response `200` OK
3150
3178
  */
3151
- createFeatures(name, data) {
3152
- return this.http.post(`/layers/${name}/features`, data).json();
3179
+ createFeatures({ name, ...query }, data) {
3180
+ return this.http.post(`/layers/${name}/features`, data, query).json();
3153
3181
  }
3154
3182
  /**
3155
3183
  * No description
@@ -5372,6 +5400,24 @@ var ConfigurationType;
5372
5400
  /**
5373
5401
  *
5374
5402
 
5403
+ Skip
5404
+
5405
+ Overwrite
5406
+
5407
+ GenerateUnique
5408
+
5409
+ ThrowError
5410
+ */
5411
+ var ConflictResolutionStrategy;
5412
+ (function (ConflictResolutionStrategy) {
5413
+ ConflictResolutionStrategy["Skip"] = "Skip";
5414
+ ConflictResolutionStrategy["Overwrite"] = "Overwrite";
5415
+ ConflictResolutionStrategy["GenerateUnique"] = "GenerateUnique";
5416
+ ConflictResolutionStrategy["ThrowError"] = "ThrowError";
5417
+ })(ConflictResolutionStrategy || (ConflictResolutionStrategy = {}));
5418
+ /**
5419
+ *
5420
+
5375
5421
  Json
5376
5422
 
5377
5423
  Csv
@@ -5574,6 +5620,21 @@ var PolicyType;
5574
5620
  PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
5575
5621
  })(PolicyType || (PolicyType = {}));
5576
5622
  /**
5623
+ * Stream quality.
5624
+
5625
+ Low
5626
+
5627
+ Medium
5628
+
5629
+ High
5630
+ */
5631
+ var Quality;
5632
+ (function (Quality) {
5633
+ Quality["Low"] = "Low";
5634
+ Quality["Medium"] = "Medium";
5635
+ Quality["High"] = "High";
5636
+ })(Quality || (Quality = {}));
5637
+ /**
5577
5638
  *
5578
5639
 
5579
5640
  Init
@@ -5674,6 +5735,8 @@ File
5674
5735
  DataSource
5675
5736
 
5676
5737
  TaskPrototype
5738
+
5739
+ Directory
5677
5740
  */
5678
5741
  var ResourceTypeFilter;
5679
5742
  (function (ResourceTypeFilter) {
@@ -5686,6 +5749,7 @@ var ResourceTypeFilter;
5686
5749
  ResourceTypeFilter["File"] = "File";
5687
5750
  ResourceTypeFilter["DataSource"] = "DataSource";
5688
5751
  ResourceTypeFilter["TaskPrototype"] = "TaskPrototype";
5752
+ ResourceTypeFilter["Directory"] = "Directory";
5689
5753
  })(ResourceTypeFilter || (ResourceTypeFilter = {}));
5690
5754
  var ResourceTypeLink;
5691
5755
  (function (ResourceTypeLink) {
@@ -5838,5 +5902,5 @@ var WorkerSettingsFieldType;
5838
5902
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
5839
5903
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
5840
5904
 
5841
- export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConfigurationType, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, Geocode, GeometryType, HttpClient, Import, Layers, Names, Notification, NotificationEvent, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
5905
+ export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConfigurationType, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, Geocode, GeometryType, HttpClient, Import, Layers, Names, Notification, NotificationEvent, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
5842
5906
  //# sourceMappingURL=api.esm.js.map