@evergis/api 4.1.50-4.1.50-alpha.1.0 → 4.1.50

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Everpoint
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Everpoint
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # @evergis/api
2
-
3
- Библиотека API.
4
-
5
- ### Генерирование API
6
-
7
- ```shell
8
- $ yarn generate
9
- ```
10
-
11
- ***ВАЖНО!!!***: Никогда и ни при каких обстоятельствах нельзя вручную править файлы,
12
- размещенные в директории `src/__generated__`!
1
+ # @evergis/api
2
+
3
+ Библиотека API.
4
+
5
+ ### Генерирование API
6
+
7
+ ```shell
8
+ $ yarn generate
9
+ ```
10
+
11
+ ***ВАЖНО!!!***: Никогда и ни при каких обстоятельствах нельзя вручную править файлы,
12
+ размещенные в директории `src/__generated__`!
package/dist/Api.d.ts CHANGED
@@ -57,6 +57,7 @@ export declare class Api extends EventEmitter {
57
57
  protected readonly http: HttpClient;
58
58
  private readonly wsUrl;
59
59
  private readonly urlPath;
60
+ private refreshingToken;
60
61
  constructor({ url, wsUrl, wsKeepAlive, snappingHubUrl, http, urlPath, httpOptions, }: ApiParams);
61
62
  get isShared(): boolean;
62
63
  get isPresentation(): boolean;
@@ -113,7 +113,7 @@ export declare class EqlService extends Service {
113
113
  * @secure
114
114
  * @response `200` OK
115
115
  */
116
- getLayerParameters(query: GetLayerParametersParams): Promise<void>;
116
+ getLayerParameters(query: GetLayerParametersParams): Promise<string>;
117
117
  /**
118
118
  * No description
119
119
  *
@@ -125,7 +125,7 @@ export declare class EqlService extends Service {
125
125
  * @secure
126
126
  * @response `200` OK
127
127
  */
128
- getLayerParameters1(query: GetLayerParameters1Params): Promise<Record<string, any>>;
128
+ getLayerParameters1(query: GetLayerParameters1Params): Promise<Record<string, string>>;
129
129
  /**
130
130
  * No description
131
131
  *
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteResourcesParams4, DeleteTableDataParams, DetailedTableInfoDc, GetTableDataParams, GetTablesInfoParams, MapTableInfoDc, MapTableParams, PagedListFeatureDc, ResourceDependenciesDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
2
+ import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteResourcesParams4, DeleteTableDataParams, DetailedTableInfoDc, GetTableDataParams, GetTablesInfoParams, MapTableInfoDc, MapTableParams, PagedBulkFeaturesListDc, PagedFeaturesListDc, PagedListFeatureDc, ResourceDependenciesDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -89,7 +89,7 @@ export declare class TablesService extends Service {
89
89
  * @secure
90
90
  * @response `200` OK
91
91
  */
92
- getTableData({ name, ...query }: GetTableDataParams): Promise<PagedListFeatureDc>;
92
+ getTableData({ name, ...query }: GetTableDataParams): Promise<PagedListFeatureDc | PagedFeaturesListDc | PagedBulkFeaturesListDc>;
93
93
  /**
94
94
  * No description
95
95
  *
@@ -2033,12 +2033,10 @@ export type FailedServiceInfoDc = ServiceInfoDc & {
2033
2033
  * Feature object definition.
2034
2034
  */
2035
2035
  export interface FeatureDc {
2036
- /** Type. */
2037
- type?: string;
2038
2036
  /** Feature geometry definition. */
2039
2037
  geometry?: GeometryCollectionDc | LineStringDc | MultiPointDc | MultiPolygonDc | PointDc | PolygonDc | PolylineDc;
2040
2038
  /** Feature attributes collection. */
2041
- properties: Record<string, any>;
2039
+ attributes: Record<string, any>;
2042
2040
  /** Feature unique identifier. */
2043
2041
  id?: string;
2044
2042
  /** Values for all bands of feature by pixel point. */
@@ -2105,38 +2103,6 @@ export interface FilterResponseDc {
2105
2103
  /** Id of the filter. */
2106
2104
  id?: string;
2107
2105
  }
2108
- /**
2109
- *
2110
-
2111
- Point
2112
-
2113
- MultiPoint
2114
-
2115
- LineString
2116
-
2117
- MultiLineString
2118
-
2119
- Polygon
2120
-
2121
- MultiPolygon
2122
-
2123
- GeometryCollection
2124
-
2125
- Feature
2126
-
2127
- FeatureCollection
2128
- */
2129
- export declare enum GeoJsonObjectType {
2130
- Point = "Point",
2131
- MultiPoint = "MultiPoint",
2132
- LineString = "LineString",
2133
- MultiLineString = "MultiLineString",
2134
- Polygon = "Polygon",
2135
- MultiPolygon = "MultiPolygon",
2136
- GeometryCollection = "GeometryCollection",
2137
- Feature = "Feature",
2138
- FeatureCollection = "FeatureCollection"
2139
- }
2140
2106
  /**
2141
2107
  * Geocode result.
2142
2108
  */
@@ -2178,25 +2144,27 @@ export type GeometryCollectionDc = GeometryDc & {
2178
2144
  /**
2179
2145
  *
2180
2146
  *
2181
- * Point
2147
+ * unknown
2182
2148
  *
2183
- * MultiPoint
2149
+ * point
2184
2150
  *
2185
- * LineString
2151
+ * polyline
2186
2152
  *
2187
- * MultiLineString
2153
+ * polygon
2188
2154
  *
2189
- * Polygon
2155
+ * envelope
2190
2156
  *
2191
- * MultiPolygon
2157
+ * multipoint
2192
2158
  *
2193
- * GeometryCollection
2159
+ * line
2194
2160
  *
2195
- * Feature
2161
+ * ring
2196
2162
  *
2197
- * FeatureCollection
2163
+ * multipolygon
2164
+ *
2165
+ * collection
2198
2166
  */
2199
- type?: GeoJsonObjectType;
2167
+ type?: GeometryType;
2200
2168
  };
2201
2169
  /**
2202
2170
  * Geometry data contract.
@@ -2205,25 +2173,27 @@ export interface GeometryDc {
2205
2173
  /**
2206
2174
  *
2207
2175
  *
2208
- * Point
2176
+ * unknown
2209
2177
  *
2210
- * MultiPoint
2178
+ * point
2211
2179
  *
2212
- * LineString
2180
+ * polyline
2213
2181
  *
2214
- * MultiLineString
2182
+ * polygon
2215
2183
  *
2216
- * Polygon
2184
+ * envelope
2217
2185
  *
2218
- * MultiPolygon
2186
+ * multipoint
2219
2187
  *
2220
- * GeometryCollection
2188
+ * line
2189
+ *
2190
+ * ring
2221
2191
  *
2222
- * Feature
2192
+ * multipolygon
2223
2193
  *
2224
- * FeatureCollection
2194
+ * collection
2225
2195
  */
2226
- type: GeoJsonObjectType;
2196
+ type: GeometryType;
2227
2197
  /**
2228
2198
  * Spatial reference id.
2229
2199
  * @format int32
@@ -2691,25 +2661,27 @@ export type LineStringDc = GeometryDc & {
2691
2661
  /**
2692
2662
  *
2693
2663
  *
2694
- * Point
2664
+ * unknown
2695
2665
  *
2696
- * MultiPoint
2666
+ * point
2697
2667
  *
2698
- * LineString
2668
+ * polyline
2699
2669
  *
2700
- * MultiLineString
2670
+ * polygon
2701
2671
  *
2702
- * Polygon
2672
+ * envelope
2703
2673
  *
2704
- * MultiPolygon
2674
+ * multipoint
2705
2675
  *
2706
- * GeometryCollection
2676
+ * line
2707
2677
  *
2708
- * Feature
2678
+ * ring
2709
2679
  *
2710
- * FeatureCollection
2680
+ * multipolygon
2681
+ *
2682
+ * collection
2711
2683
  */
2712
- type?: GeoJsonObjectType;
2684
+ type?: GeometryType;
2713
2685
  /** Poly coordinates. */
2714
2686
  coordinates: PositionDc[];
2715
2687
  };
@@ -2903,25 +2875,27 @@ export type MultiPointDc = GeometryDc & {
2903
2875
  /**
2904
2876
  *
2905
2877
  *
2906
- * Point
2878
+ * unknown
2907
2879
  *
2908
- * MultiPoint
2880
+ * point
2909
2881
  *
2910
- * LineString
2882
+ * polyline
2911
2883
  *
2912
- * MultiLineString
2884
+ * polygon
2913
2885
  *
2914
- * Polygon
2886
+ * envelope
2915
2887
  *
2916
- * MultiPolygon
2888
+ * multipoint
2917
2889
  *
2918
- * GeometryCollection
2890
+ * line
2919
2891
  *
2920
- * Feature
2892
+ * ring
2921
2893
  *
2922
- * FeatureCollection
2894
+ * multipolygon
2895
+ *
2896
+ * collection
2923
2897
  */
2924
- type?: GeoJsonObjectType;
2898
+ type?: GeometryType;
2925
2899
  };
2926
2900
  /**
2927
2901
  * Multipoint geometry object definition.
@@ -2932,25 +2906,27 @@ export type MultiPolygonDc = GeometryDc & {
2932
2906
  /**
2933
2907
  *
2934
2908
  *
2935
- * Point
2909
+ * unknown
2936
2910
  *
2937
- * MultiPoint
2911
+ * point
2938
2912
  *
2939
- * LineString
2913
+ * polyline
2940
2914
  *
2941
- * MultiLineString
2915
+ * polygon
2942
2916
  *
2943
- * Polygon
2917
+ * envelope
2944
2918
  *
2945
- * MultiPolygon
2919
+ * multipoint
2946
2920
  *
2947
- * GeometryCollection
2921
+ * line
2948
2922
  *
2949
- * Feature
2923
+ * ring
2950
2924
  *
2951
- * FeatureCollection
2925
+ * multipolygon
2926
+ *
2927
+ * collection
2952
2928
  */
2953
- type?: GeoJsonObjectType;
2929
+ type?: GeometryType;
2954
2930
  };
2955
2931
  /**
2956
2932
  * Information about a namespace .
@@ -2987,40 +2963,18 @@ export interface Operation {
2987
2963
  /**
2988
2964
  * Features list definition.
2989
2965
  */
2990
- export interface PagedBulkFeaturesListDc {
2966
+ export type PagedBulkFeaturesListDc = PagedListFeatureDc & {
2991
2967
  /** Layer name. */
2992
- layerName?: string;
2968
+ layerName?: string | null;
2993
2969
  /** Has error. */
2994
2970
  hasError?: boolean;
2995
2971
  /** Error text. */
2996
- error?: string;
2997
- /** Features list definition. */
2998
- featureCollection?: PagedFeaturesListDc;
2999
- }
2972
+ error?: string | null;
2973
+ };
3000
2974
  /**
3001
2975
  * Features list definition.
3002
2976
  */
3003
- export interface PagedFeaturesListDc {
3004
- /** Type. */
3005
- type?: string;
3006
- /** Features. */
3007
- features?: FeatureDc[];
3008
- /**
3009
- * Total number of items that the list contains, e.g. if the paging is not applied.
3010
- * @format int64
3011
- */
3012
- totalCount?: number;
3013
- /**
3014
- * The first index of the item in the list that is returned in the Items parameter.
3015
- * @format int32
3016
- */
3017
- offset?: number;
3018
- /**
3019
- * Maximum number of the items that the Items parameter may contain.
3020
- * @format int32
3021
- */
3022
- limit?: number;
3023
- }
2977
+ export type PagedFeaturesListDc = PagedListFeatureDc & object;
3024
2978
  export interface PagedListConfigDc {
3025
2979
  /** @format int64 */
3026
2980
  totalCount?: number;
@@ -3220,25 +3174,27 @@ export type PointDc = GeometryDc & {
3220
3174
  /**
3221
3175
  *
3222
3176
  *
3223
- * Point
3177
+ * unknown
3224
3178
  *
3225
- * MultiPoint
3179
+ * point
3226
3180
  *
3227
- * LineString
3181
+ * polyline
3228
3182
  *
3229
- * MultiLineString
3183
+ * polygon
3230
3184
  *
3231
- * Polygon
3185
+ * envelope
3232
3186
  *
3233
- * MultiPolygon
3187
+ * multipoint
3234
3188
  *
3235
- * GeometryCollection
3189
+ * line
3236
3190
  *
3237
- * Feature
3191
+ * ring
3238
3192
  *
3239
- * FeatureCollection
3193
+ * multipolygon
3194
+ *
3195
+ * collection
3240
3196
  */
3241
- type?: GeoJsonObjectType;
3197
+ type?: GeometryType;
3242
3198
  };
3243
3199
  export interface PolicyDc {
3244
3200
  /**
@@ -3301,25 +3257,27 @@ export type PolygonDc = GeometryDc & {
3301
3257
  /**
3302
3258
  *
3303
3259
  *
3304
- * Point
3260
+ * unknown
3305
3261
  *
3306
- * MultiPoint
3262
+ * point
3307
3263
  *
3308
- * LineString
3264
+ * polyline
3309
3265
  *
3310
- * MultiLineString
3266
+ * polygon
3311
3267
  *
3312
- * Polygon
3268
+ * envelope
3313
3269
  *
3314
- * MultiPolygon
3270
+ * multipoint
3315
3271
  *
3316
- * GeometryCollection
3272
+ * line
3273
+ *
3274
+ * ring
3317
3275
  *
3318
- * Feature
3276
+ * multipolygon
3319
3277
  *
3320
- * FeatureCollection
3278
+ * collection
3321
3279
  */
3322
- type?: GeoJsonObjectType;
3280
+ type?: GeometryType;
3323
3281
  /** Polygon coordinates. */
3324
3282
  coordinates: PositionDc[][];
3325
3283
  };
@@ -3330,25 +3288,27 @@ export type PolylineDc = GeometryDc & {
3330
3288
  /**
3331
3289
  *
3332
3290
  *
3333
- * Point
3291
+ * unknown
3334
3292
  *
3335
- * MultiPoint
3293
+ * point
3336
3294
  *
3337
- * LineString
3295
+ * polyline
3338
3296
  *
3339
- * MultiLineString
3297
+ * polygon
3340
3298
  *
3341
- * Polygon
3299
+ * envelope
3342
3300
  *
3343
- * MultiPolygon
3301
+ * multipoint
3344
3302
  *
3345
- * GeometryCollection
3303
+ * line
3346
3304
  *
3347
- * Feature
3305
+ * ring
3348
3306
  *
3349
- * FeatureCollection
3307
+ * multipolygon
3308
+ *
3309
+ * collection
3350
3310
  */
3351
- type?: GeoJsonObjectType;
3311
+ type?: GeometryType;
3352
3312
  /** Poly coordinates. */
3353
3313
  coordinates: PositionDc[][];
3354
3314
  };
package/dist/api.esm.js CHANGED
@@ -1416,7 +1416,7 @@ class EqlService extends Service {
1416
1416
  * @response `200` OK
1417
1417
  */
1418
1418
  getLayerParameters(query) {
1419
- return this.http.get(`/eql/getParam`, query).then(() => { });
1419
+ return this.http.get(`/eql/getParam`, query).text();
1420
1420
  }
1421
1421
  /**
1422
1422
  * No description
@@ -2783,9 +2783,11 @@ class Api extends EventEmitter {
2783
2783
  http;
2784
2784
  wsUrl;
2785
2785
  urlPath;
2786
+ refreshingToken;
2786
2787
  constructor({ url, wsUrl, wsKeepAlive, snappingHubUrl, http, urlPath, httpOptions, }) {
2787
2788
  super();
2788
2789
  const { hooks } = httpOptions || {};
2790
+ this.refreshingToken = false;
2789
2791
  this.http =
2790
2792
  http ||
2791
2793
  new HttpClient({
@@ -2816,7 +2818,8 @@ class Api extends EventEmitter {
2816
2818
  case 401:
2817
2819
  try {
2818
2820
  const refreshToken = window.localStorage.getItem(STORAGE_REFRESH_TOKEN_KEY);
2819
- if (refreshToken) {
2821
+ if (!this.refreshingToken && refreshToken) {
2822
+ this.refreshingToken = true;
2820
2823
  const refreshTokenResponse = await this.account.refreshToken({
2821
2824
  refreshToken,
2822
2825
  });
@@ -2826,9 +2829,6 @@ class Api extends EventEmitter {
2826
2829
  }
2827
2830
  request.headers?.set("Authorization", `Bearer ${refreshTokenResponse.token || ""}`);
2828
2831
  }
2829
- else {
2830
- await this.logout();
2831
- }
2832
2832
  }
2833
2833
  catch (error) {
2834
2834
  await this.logout();
@@ -2838,18 +2838,6 @@ class Api extends EventEmitter {
2838
2838
  }
2839
2839
  },
2840
2840
  ],
2841
- /* afterResponse: [
2842
- (request, options, response) => {
2843
- const apiEvent = apiEventsByResponseStatus[response?.status];
2844
-
2845
- if (apiEvent) {
2846
- this.emit(apiEvent, errorHandler(new HTTPError(response, request, options)));
2847
- }
2848
-
2849
- return response;
2850
- },
2851
- ...(hooks?.afterResponse || []),
2852
- ], */
2853
2841
  },
2854
2842
  });
2855
2843
  this.url = url;
@@ -4947,7 +4935,9 @@ class TablesService extends Service {
4947
4935
  * @response `200` OK
4948
4936
  */
4949
4937
  getTableData({ name, ...query }) {
4950
- return this.http.get(`/tables/${name}/data`, query).json();
4938
+ return this.http
4939
+ .get(`/tables/${name}/data`, query)
4940
+ .json();
4951
4941
  }
4952
4942
  /**
4953
4943
  * No description
@@ -5622,39 +5612,6 @@ var ErrorType;
5622
5612
  /**
5623
5613
  *
5624
5614
 
5625
- Point
5626
-
5627
- MultiPoint
5628
-
5629
- LineString
5630
-
5631
- MultiLineString
5632
-
5633
- Polygon
5634
-
5635
- MultiPolygon
5636
-
5637
- GeometryCollection
5638
-
5639
- Feature
5640
-
5641
- FeatureCollection
5642
- */
5643
- var GeoJsonObjectType;
5644
- (function (GeoJsonObjectType) {
5645
- GeoJsonObjectType["Point"] = "Point";
5646
- GeoJsonObjectType["MultiPoint"] = "MultiPoint";
5647
- GeoJsonObjectType["LineString"] = "LineString";
5648
- GeoJsonObjectType["MultiLineString"] = "MultiLineString";
5649
- GeoJsonObjectType["Polygon"] = "Polygon";
5650
- GeoJsonObjectType["MultiPolygon"] = "MultiPolygon";
5651
- GeoJsonObjectType["GeometryCollection"] = "GeometryCollection";
5652
- GeoJsonObjectType["Feature"] = "Feature";
5653
- GeoJsonObjectType["FeatureCollection"] = "FeatureCollection";
5654
- })(GeoJsonObjectType || (GeoJsonObjectType = {}));
5655
- /**
5656
- *
5657
-
5658
5615
  unknown
5659
5616
 
5660
5617
  point
@@ -6025,5 +5982,5 @@ var WorkerSettingsFieldType;
6025
5982
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
6026
5983
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
6027
5984
 
6028
- export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, GeoJsonObjectType, 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 };
5985
+ export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, 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 };
6029
5986
  //# sourceMappingURL=api.esm.js.map