@evergis/api 4.1.50-alpha.0 → 4.1.51
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 +1 -0
- package/dist/__generated__/EqlService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +102 -142
- package/dist/api.esm.js +13 -52
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +12 -51
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
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<
|
|
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,
|
|
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
|
-
|
|
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
|
-
*
|
|
2147
|
+
* unknown
|
|
2182
2148
|
*
|
|
2183
|
-
*
|
|
2149
|
+
* point
|
|
2184
2150
|
*
|
|
2185
|
-
*
|
|
2151
|
+
* polyline
|
|
2186
2152
|
*
|
|
2187
|
-
*
|
|
2153
|
+
* polygon
|
|
2188
2154
|
*
|
|
2189
|
-
*
|
|
2155
|
+
* envelope
|
|
2190
2156
|
*
|
|
2191
|
-
*
|
|
2157
|
+
* multipoint
|
|
2192
2158
|
*
|
|
2193
|
-
*
|
|
2159
|
+
* line
|
|
2194
2160
|
*
|
|
2195
|
-
*
|
|
2161
|
+
* ring
|
|
2196
2162
|
*
|
|
2197
|
-
*
|
|
2163
|
+
* multipolygon
|
|
2164
|
+
*
|
|
2165
|
+
* collection
|
|
2198
2166
|
*/
|
|
2199
|
-
type?:
|
|
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
|
-
*
|
|
2176
|
+
* unknown
|
|
2209
2177
|
*
|
|
2210
|
-
*
|
|
2178
|
+
* point
|
|
2211
2179
|
*
|
|
2212
|
-
*
|
|
2180
|
+
* polyline
|
|
2213
2181
|
*
|
|
2214
|
-
*
|
|
2182
|
+
* polygon
|
|
2215
2183
|
*
|
|
2216
|
-
*
|
|
2184
|
+
* envelope
|
|
2217
2185
|
*
|
|
2218
|
-
*
|
|
2186
|
+
* multipoint
|
|
2219
2187
|
*
|
|
2220
|
-
*
|
|
2188
|
+
* line
|
|
2189
|
+
*
|
|
2190
|
+
* ring
|
|
2221
2191
|
*
|
|
2222
|
-
*
|
|
2192
|
+
* multipolygon
|
|
2223
2193
|
*
|
|
2224
|
-
*
|
|
2194
|
+
* collection
|
|
2225
2195
|
*/
|
|
2226
|
-
type:
|
|
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
|
-
*
|
|
2664
|
+
* unknown
|
|
2695
2665
|
*
|
|
2696
|
-
*
|
|
2666
|
+
* point
|
|
2697
2667
|
*
|
|
2698
|
-
*
|
|
2668
|
+
* polyline
|
|
2699
2669
|
*
|
|
2700
|
-
*
|
|
2670
|
+
* polygon
|
|
2701
2671
|
*
|
|
2702
|
-
*
|
|
2672
|
+
* envelope
|
|
2703
2673
|
*
|
|
2704
|
-
*
|
|
2674
|
+
* multipoint
|
|
2705
2675
|
*
|
|
2706
|
-
*
|
|
2676
|
+
* line
|
|
2707
2677
|
*
|
|
2708
|
-
*
|
|
2678
|
+
* ring
|
|
2709
2679
|
*
|
|
2710
|
-
*
|
|
2680
|
+
* multipolygon
|
|
2681
|
+
*
|
|
2682
|
+
* collection
|
|
2711
2683
|
*/
|
|
2712
|
-
type?:
|
|
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
|
-
*
|
|
2878
|
+
* unknown
|
|
2907
2879
|
*
|
|
2908
|
-
*
|
|
2880
|
+
* point
|
|
2909
2881
|
*
|
|
2910
|
-
*
|
|
2882
|
+
* polyline
|
|
2911
2883
|
*
|
|
2912
|
-
*
|
|
2884
|
+
* polygon
|
|
2913
2885
|
*
|
|
2914
|
-
*
|
|
2886
|
+
* envelope
|
|
2915
2887
|
*
|
|
2916
|
-
*
|
|
2888
|
+
* multipoint
|
|
2917
2889
|
*
|
|
2918
|
-
*
|
|
2890
|
+
* line
|
|
2919
2891
|
*
|
|
2920
|
-
*
|
|
2892
|
+
* ring
|
|
2921
2893
|
*
|
|
2922
|
-
*
|
|
2894
|
+
* multipolygon
|
|
2895
|
+
*
|
|
2896
|
+
* collection
|
|
2923
2897
|
*/
|
|
2924
|
-
type?:
|
|
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
|
-
*
|
|
2909
|
+
* unknown
|
|
2936
2910
|
*
|
|
2937
|
-
*
|
|
2911
|
+
* point
|
|
2938
2912
|
*
|
|
2939
|
-
*
|
|
2913
|
+
* polyline
|
|
2940
2914
|
*
|
|
2941
|
-
*
|
|
2915
|
+
* polygon
|
|
2942
2916
|
*
|
|
2943
|
-
*
|
|
2917
|
+
* envelope
|
|
2944
2918
|
*
|
|
2945
|
-
*
|
|
2919
|
+
* multipoint
|
|
2946
2920
|
*
|
|
2947
|
-
*
|
|
2921
|
+
* line
|
|
2948
2922
|
*
|
|
2949
|
-
*
|
|
2923
|
+
* ring
|
|
2950
2924
|
*
|
|
2951
|
-
*
|
|
2925
|
+
* multipolygon
|
|
2926
|
+
*
|
|
2927
|
+
* collection
|
|
2952
2928
|
*/
|
|
2953
|
-
type?:
|
|
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
|
|
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
|
-
|
|
2998
|
-
featureCollection?: PagedFeaturesListDc;
|
|
2999
|
-
}
|
|
2972
|
+
error?: string | null;
|
|
2973
|
+
};
|
|
3000
2974
|
/**
|
|
3001
2975
|
* Features list definition.
|
|
3002
2976
|
*/
|
|
3003
|
-
export
|
|
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
|
-
*
|
|
3177
|
+
* unknown
|
|
3224
3178
|
*
|
|
3225
|
-
*
|
|
3179
|
+
* point
|
|
3226
3180
|
*
|
|
3227
|
-
*
|
|
3181
|
+
* polyline
|
|
3228
3182
|
*
|
|
3229
|
-
*
|
|
3183
|
+
* polygon
|
|
3230
3184
|
*
|
|
3231
|
-
*
|
|
3185
|
+
* envelope
|
|
3232
3186
|
*
|
|
3233
|
-
*
|
|
3187
|
+
* multipoint
|
|
3234
3188
|
*
|
|
3235
|
-
*
|
|
3189
|
+
* line
|
|
3236
3190
|
*
|
|
3237
|
-
*
|
|
3191
|
+
* ring
|
|
3238
3192
|
*
|
|
3239
|
-
*
|
|
3193
|
+
* multipolygon
|
|
3194
|
+
*
|
|
3195
|
+
* collection
|
|
3240
3196
|
*/
|
|
3241
|
-
type?:
|
|
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
|
-
*
|
|
3260
|
+
* unknown
|
|
3305
3261
|
*
|
|
3306
|
-
*
|
|
3262
|
+
* point
|
|
3307
3263
|
*
|
|
3308
|
-
*
|
|
3264
|
+
* polyline
|
|
3309
3265
|
*
|
|
3310
|
-
*
|
|
3266
|
+
* polygon
|
|
3311
3267
|
*
|
|
3312
|
-
*
|
|
3268
|
+
* envelope
|
|
3313
3269
|
*
|
|
3314
|
-
*
|
|
3270
|
+
* multipoint
|
|
3315
3271
|
*
|
|
3316
|
-
*
|
|
3272
|
+
* line
|
|
3273
|
+
*
|
|
3274
|
+
* ring
|
|
3317
3275
|
*
|
|
3318
|
-
*
|
|
3276
|
+
* multipolygon
|
|
3319
3277
|
*
|
|
3320
|
-
*
|
|
3278
|
+
* collection
|
|
3321
3279
|
*/
|
|
3322
|
-
type?:
|
|
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
|
-
*
|
|
3291
|
+
* unknown
|
|
3334
3292
|
*
|
|
3335
|
-
*
|
|
3293
|
+
* point
|
|
3336
3294
|
*
|
|
3337
|
-
*
|
|
3295
|
+
* polyline
|
|
3338
3296
|
*
|
|
3339
|
-
*
|
|
3297
|
+
* polygon
|
|
3340
3298
|
*
|
|
3341
|
-
*
|
|
3299
|
+
* envelope
|
|
3342
3300
|
*
|
|
3343
|
-
*
|
|
3301
|
+
* multipoint
|
|
3344
3302
|
*
|
|
3345
|
-
*
|
|
3303
|
+
* line
|
|
3346
3304
|
*
|
|
3347
|
-
*
|
|
3305
|
+
* ring
|
|
3348
3306
|
*
|
|
3349
|
-
*
|
|
3307
|
+
* multipolygon
|
|
3308
|
+
*
|
|
3309
|
+
* collection
|
|
3350
3310
|
*/
|
|
3351
|
-
type?:
|
|
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).
|
|
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
|
});
|
|
@@ -2825,9 +2828,7 @@ class Api extends EventEmitter {
|
|
|
2825
2828
|
window.localStorage.setItem(STORAGE_REFRESH_TOKEN_KEY, refreshTokenResponse.refreshToken);
|
|
2826
2829
|
}
|
|
2827
2830
|
request.headers?.set("Authorization", `Bearer ${refreshTokenResponse.token || ""}`);
|
|
2828
|
-
|
|
2829
|
-
else {
|
|
2830
|
-
await this.logout();
|
|
2831
|
+
this.refreshingToken = false;
|
|
2831
2832
|
}
|
|
2832
2833
|
}
|
|
2833
2834
|
catch (error) {
|
|
@@ -2838,18 +2839,6 @@ class Api extends EventEmitter {
|
|
|
2838
2839
|
}
|
|
2839
2840
|
},
|
|
2840
2841
|
],
|
|
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
2842
|
},
|
|
2854
2843
|
});
|
|
2855
2844
|
this.url = url;
|
|
@@ -2890,6 +2879,9 @@ class Api extends EventEmitter {
|
|
|
2890
2879
|
withCredentials: true,
|
|
2891
2880
|
skipNegotiation: true,
|
|
2892
2881
|
transport: HttpTransportType.WebSockets,
|
|
2882
|
+
accessTokenFactory: () => {
|
|
2883
|
+
return window.localStorage.getItem(STORAGE_TOKEN_KEY) || "";
|
|
2884
|
+
},
|
|
2893
2885
|
})
|
|
2894
2886
|
.withAutomaticReconnect()
|
|
2895
2887
|
.build()
|
|
@@ -4947,7 +4939,9 @@ class TablesService extends Service {
|
|
|
4947
4939
|
* @response `200` OK
|
|
4948
4940
|
*/
|
|
4949
4941
|
getTableData({ name, ...query }) {
|
|
4950
|
-
return this.http
|
|
4942
|
+
return this.http
|
|
4943
|
+
.get(`/tables/${name}/data`, query)
|
|
4944
|
+
.json();
|
|
4951
4945
|
}
|
|
4952
4946
|
/**
|
|
4953
4947
|
* No description
|
|
@@ -5622,39 +5616,6 @@ var ErrorType;
|
|
|
5622
5616
|
/**
|
|
5623
5617
|
*
|
|
5624
5618
|
|
|
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
5619
|
unknown
|
|
5659
5620
|
|
|
5660
5621
|
point
|
|
@@ -6025,5 +5986,5 @@ var WorkerSettingsFieldType;
|
|
|
6025
5986
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
6026
5987
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
6027
5988
|
|
|
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,
|
|
5989
|
+
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
5990
|
//# sourceMappingURL=api.esm.js.map
|