@evergis/api 4.0.9 → 4.0.11
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 +20 -20
- package/README.md +21 -21
- package/dist/Api.d.ts +1 -2
- package/dist/__generated__/FiltersService.d.ts +1 -1
- package/dist/__generated__/LayersService.d.ts +10 -11
- package/dist/__generated__/PrintService.d.ts +3 -3
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +4 -4
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +370 -600
- package/dist/api.cjs.development.js +16 -79
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +250 -312
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Tables.d.ts +1 -1
- package/dist/services/index.d.ts +0 -1
- package/package.json +2 -2
- package/dist/__generated__/GeneralService.d.ts +0 -20
- package/dist/services/General.d.ts +0 -3
package/dist/api.esm.js
CHANGED
|
@@ -24,9 +24,6 @@ function _defineProperties(target, props) {
|
|
|
24
24
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
25
25
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
26
26
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
27
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
28
|
-
writable: false
|
|
29
|
-
});
|
|
30
27
|
return Constructor;
|
|
31
28
|
}
|
|
32
29
|
|
|
@@ -60,9 +57,6 @@ function _inherits(subClass, superClass) {
|
|
|
60
57
|
configurable: true
|
|
61
58
|
}
|
|
62
59
|
});
|
|
63
|
-
Object.defineProperty(subClass, "prototype", {
|
|
64
|
-
writable: false
|
|
65
|
-
});
|
|
66
60
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
67
61
|
}
|
|
68
62
|
|
|
@@ -121,8 +115,6 @@ function _assertThisInitialized(self) {
|
|
|
121
115
|
function _possibleConstructorReturn(self, call) {
|
|
122
116
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
123
117
|
return call;
|
|
124
|
-
} else if (call !== void 0) {
|
|
125
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
126
118
|
}
|
|
127
119
|
|
|
128
120
|
return _assertThisInitialized(self);
|
|
@@ -156,7 +148,7 @@ function _superPropBase(object, property) {
|
|
|
156
148
|
return object;
|
|
157
149
|
}
|
|
158
150
|
|
|
159
|
-
function _get() {
|
|
151
|
+
function _get(target, property, receiver) {
|
|
160
152
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
161
153
|
_get = Reflect.get;
|
|
162
154
|
} else {
|
|
@@ -167,14 +159,14 @@ function _get() {
|
|
|
167
159
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
168
160
|
|
|
169
161
|
if (desc.get) {
|
|
170
|
-
return desc.get.call(
|
|
162
|
+
return desc.get.call(receiver);
|
|
171
163
|
}
|
|
172
164
|
|
|
173
165
|
return desc.value;
|
|
174
166
|
};
|
|
175
167
|
}
|
|
176
168
|
|
|
177
|
-
return _get
|
|
169
|
+
return _get(target, property, receiver || target);
|
|
178
170
|
}
|
|
179
171
|
|
|
180
172
|
const API_USER_INFO_KEY = "@evergis/user-info";
|
|
@@ -2807,7 +2799,7 @@ let FiltersService = /*#__PURE__*/function (_Service) {
|
|
|
2807
2799
|
}, {
|
|
2808
2800
|
key: "update",
|
|
2809
2801
|
value: function update(id, data) {
|
|
2810
|
-
return this.http.post("/filters/" + id, data).
|
|
2802
|
+
return this.http.post("/filters/" + id, data).then(() => {});
|
|
2811
2803
|
}
|
|
2812
2804
|
/**
|
|
2813
2805
|
* No description
|
|
@@ -2844,58 +2836,6 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
2844
2836
|
return _createClass(Filters);
|
|
2845
2837
|
}(FiltersService);
|
|
2846
2838
|
|
|
2847
|
-
/**
|
|
2848
|
-
* @title Spatial Processing Core API
|
|
2849
|
-
* @version 1.5.1.0
|
|
2850
|
-
* @baseUrl /sp
|
|
2851
|
-
*/
|
|
2852
|
-
|
|
2853
|
-
let GeneralService = /*#__PURE__*/function (_Service) {
|
|
2854
|
-
_inherits(GeneralService, _Service);
|
|
2855
|
-
|
|
2856
|
-
var _super = /*#__PURE__*/_createSuper(GeneralService);
|
|
2857
|
-
|
|
2858
|
-
function GeneralService() {
|
|
2859
|
-
_classCallCheck(this, GeneralService);
|
|
2860
|
-
|
|
2861
|
-
return _super.apply(this, arguments);
|
|
2862
|
-
}
|
|
2863
|
-
|
|
2864
|
-
_createClass(GeneralService, [{
|
|
2865
|
-
key: "getServerInfo",
|
|
2866
|
-
value:
|
|
2867
|
-
/**
|
|
2868
|
-
* No description
|
|
2869
|
-
*
|
|
2870
|
-
* @tags General
|
|
2871
|
-
* @name GetServerInfo
|
|
2872
|
-
* @operationId GeneralController_GetServerInfo
|
|
2873
|
-
* @summary Returns basic information about the server.
|
|
2874
|
-
* @request GET:/
|
|
2875
|
-
* @response `200` OK
|
|
2876
|
-
*/
|
|
2877
|
-
function getServerInfo() {
|
|
2878
|
-
return this.http.get("/").json();
|
|
2879
|
-
}
|
|
2880
|
-
}]);
|
|
2881
|
-
|
|
2882
|
-
return GeneralService;
|
|
2883
|
-
}(Service);
|
|
2884
|
-
|
|
2885
|
-
let General = /*#__PURE__*/function (_GeneralService) {
|
|
2886
|
-
_inherits(General, _GeneralService);
|
|
2887
|
-
|
|
2888
|
-
var _super = /*#__PURE__*/_createSuper(General);
|
|
2889
|
-
|
|
2890
|
-
function General() {
|
|
2891
|
-
_classCallCheck(this, General);
|
|
2892
|
-
|
|
2893
|
-
return _super.apply(this, arguments);
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
|
-
return _createClass(General);
|
|
2897
|
-
}(GeneralService);
|
|
2898
|
-
|
|
2899
2839
|
const _excluded$2 = ["providerName"],
|
|
2900
2840
|
_excluded2$1 = ["providerName"],
|
|
2901
2841
|
_excluded3$1 = ["providerName"];
|
|
@@ -3578,7 +3518,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3578
3518
|
* @operationId LayersController_UpdateMapboxService
|
|
3579
3519
|
* @summary Update mapbox service.
|
|
3580
3520
|
* @request PATCH:/layers/{name}#type=Mapbox
|
|
3581
|
-
* @response `
|
|
3521
|
+
* @response `200` OK
|
|
3582
3522
|
*/
|
|
3583
3523
|
|
|
3584
3524
|
}, {
|
|
@@ -3596,7 +3536,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3596
3536
|
* @operationId LayersController_UpdatePythonService
|
|
3597
3537
|
* @summary Update python service.
|
|
3598
3538
|
* @request PATCH:/layers/{name}#type=Python
|
|
3599
|
-
* @response `
|
|
3539
|
+
* @response `200` OK
|
|
3600
3540
|
*/
|
|
3601
3541
|
|
|
3602
3542
|
}, {
|
|
@@ -3614,7 +3554,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3614
3554
|
* @operationId LayersController_UpdateProxyService
|
|
3615
3555
|
* @summary Update Proxy Service.
|
|
3616
3556
|
* @request PATCH:/layers/{name}#type=ProxyService
|
|
3617
|
-
* @response `
|
|
3557
|
+
* @response `200` OK
|
|
3618
3558
|
*/
|
|
3619
3559
|
|
|
3620
3560
|
}, {
|
|
@@ -3632,7 +3572,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3632
3572
|
* @operationId LayersController_UpdateTileCatalogService
|
|
3633
3573
|
* @summary Update Postgres Tile Catalog Service.
|
|
3634
3574
|
* @request PATCH:/layers/{name}#type=PostgresTileLayerService
|
|
3635
|
-
* @response `
|
|
3575
|
+
* @response `200` OK
|
|
3636
3576
|
*/
|
|
3637
3577
|
|
|
3638
3578
|
}, {
|
|
@@ -3650,7 +3590,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3650
3590
|
* @operationId LayersController_UpdateRemoteTileService
|
|
3651
3591
|
* @summary Update Remote Tile Service.
|
|
3652
3592
|
* @request PATCH:/layers/{name}#type=RemoteTileService
|
|
3653
|
-
* @response `
|
|
3593
|
+
* @response `200` OK
|
|
3654
3594
|
*/
|
|
3655
3595
|
|
|
3656
3596
|
}, {
|
|
@@ -3668,7 +3608,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3668
3608
|
* @operationId LayersController_UpdateQueryLayerService
|
|
3669
3609
|
* @summary Update EQL-based Query Layer Service.
|
|
3670
3610
|
* @request PATCH:/layers/{name}#type=QueryLayerService
|
|
3671
|
-
* @response `
|
|
3611
|
+
* @response `200` OK
|
|
3672
3612
|
*/
|
|
3673
3613
|
|
|
3674
3614
|
}, {
|
|
@@ -4134,7 +4074,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4134
4074
|
* @summary Validates the given EQL expression against the requested layer. If the expression is valid, it can be executed on the features in the layer to produce a value of some type. The type of the resulting value will be also returned in the validation result.
|
|
4135
4075
|
* @request GET:/layers/{layerName}/validateExpression
|
|
4136
4076
|
* @response `200` OK
|
|
4137
|
-
* @response `400` Bad Request
|
|
4138
4077
|
*/
|
|
4139
4078
|
|
|
4140
4079
|
}, {
|
|
@@ -4737,8 +4676,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4737
4676
|
|| event.code === 4002
|
|
4738
4677
|
/* InvalidSession */
|
|
4739
4678
|
) {
|
|
4740
|
-
|
|
4741
|
-
|
|
4679
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
4680
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4742
4681
|
_this.connectStatus = ConnectionStatus.Break;
|
|
4743
4682
|
_this.reconnectTries++;
|
|
4744
4683
|
|
|
@@ -4918,7 +4857,7 @@ let PrintService = /*#__PURE__*/function (_Service) {
|
|
|
4918
4857
|
* @response `200` OK
|
|
4919
4858
|
*/
|
|
4920
4859
|
function print(data) {
|
|
4921
|
-
return this.http.post("/print/print", data).
|
|
4860
|
+
return this.http.post("/print/print", data).then(() => {});
|
|
4922
4861
|
}
|
|
4923
4862
|
/**
|
|
4924
4863
|
* No description
|
|
@@ -5799,12 +5738,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5799
5738
|
}, {
|
|
5800
5739
|
key: "getDependentNames",
|
|
5801
5740
|
value: function getDependentNames(deps, depType) {
|
|
5802
|
-
return deps.filter(_ref => {
|
|
5741
|
+
return deps.filter((_ref) => {
|
|
5803
5742
|
let {
|
|
5804
5743
|
type
|
|
5805
5744
|
} = _ref;
|
|
5806
5745
|
return type === depType;
|
|
5807
|
-
}).map(_ref2 => {
|
|
5746
|
+
}).map((_ref2) => {
|
|
5808
5747
|
let {
|
|
5809
5748
|
name
|
|
5810
5749
|
} = _ref2;
|
|
@@ -6876,7 +6815,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6876
6815
|
(_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
|
|
6877
6816
|
}
|
|
6878
6817
|
}, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
|
|
6879
|
-
beforeRetry: [async _ref2 => {
|
|
6818
|
+
beforeRetry: [async (_ref2) => {
|
|
6880
6819
|
let {
|
|
6881
6820
|
request,
|
|
6882
6821
|
error,
|
|
@@ -6938,7 +6877,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6938
6877
|
_this.print = new Print(_this.http);
|
|
6939
6878
|
_this.tools = new Tools(_this.http);
|
|
6940
6879
|
_this.resourceCatalog = new ResourceCatalog(_this.http);
|
|
6941
|
-
_this.general = new General(_this.http);
|
|
6942
6880
|
_this.external = new External(_this.http);
|
|
6943
6881
|
_this.clientSettings = new ClientSettings(_this.http);
|
|
6944
6882
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
@@ -7084,47 +7022,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7084
7022
|
|
|
7085
7023
|
/**
|
|
7086
7024
|
*
|
|
7087
|
-
|
|
7025
|
+
|
|
7088
7026
|
None
|
|
7089
|
-
|
|
7027
|
+
|
|
7090
7028
|
Array
|
|
7091
|
-
|
|
7029
|
+
|
|
7092
7030
|
Min
|
|
7093
|
-
|
|
7031
|
+
|
|
7094
7032
|
Max
|
|
7095
|
-
|
|
7033
|
+
|
|
7096
7034
|
Avg
|
|
7097
|
-
|
|
7035
|
+
|
|
7098
7036
|
Sum
|
|
7099
|
-
|
|
7037
|
+
|
|
7100
7038
|
Extent
|
|
7101
|
-
|
|
7039
|
+
|
|
7102
7040
|
H3
|
|
7103
|
-
|
|
7041
|
+
|
|
7104
7042
|
Count
|
|
7105
|
-
|
|
7043
|
+
|
|
7106
7044
|
TotalCount
|
|
7107
|
-
|
|
7045
|
+
|
|
7108
7046
|
DistinctCount
|
|
7109
|
-
|
|
7047
|
+
|
|
7110
7048
|
First
|
|
7111
|
-
|
|
7049
|
+
|
|
7112
7050
|
Last
|
|
7113
|
-
|
|
7051
|
+
|
|
7114
7052
|
Median
|
|
7115
|
-
|
|
7053
|
+
|
|
7116
7054
|
Mod
|
|
7117
|
-
|
|
7055
|
+
|
|
7118
7056
|
StdDeviation
|
|
7119
|
-
|
|
7057
|
+
|
|
7120
7058
|
SumOfProduct
|
|
7121
|
-
|
|
7059
|
+
|
|
7122
7060
|
OnlyValue
|
|
7123
|
-
|
|
7061
|
+
|
|
7124
7062
|
WeightedAvg
|
|
7125
|
-
|
|
7063
|
+
|
|
7126
7064
|
DensityIndicators
|
|
7127
|
-
|
|
7065
|
+
|
|
7128
7066
|
DividedSum
|
|
7129
7067
|
*/
|
|
7130
7068
|
var AggregationFunction;
|
|
@@ -7154,13 +7092,13 @@ var AggregationFunction;
|
|
|
7154
7092
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7155
7093
|
/**
|
|
7156
7094
|
*
|
|
7157
|
-
|
|
7095
|
+
|
|
7158
7096
|
Unknown
|
|
7159
|
-
|
|
7097
|
+
|
|
7160
7098
|
Icon
|
|
7161
|
-
|
|
7099
|
+
|
|
7162
7100
|
PNG
|
|
7163
|
-
|
|
7101
|
+
|
|
7164
7102
|
SVG
|
|
7165
7103
|
*/
|
|
7166
7104
|
|
|
@@ -7175,13 +7113,13 @@ var AttributeIconType;
|
|
|
7175
7113
|
})(AttributeIconType || (AttributeIconType = {}));
|
|
7176
7114
|
/**
|
|
7177
7115
|
*
|
|
7178
|
-
|
|
7116
|
+
|
|
7179
7117
|
None
|
|
7180
|
-
|
|
7118
|
+
|
|
7181
7119
|
SelectFromHandBook
|
|
7182
|
-
|
|
7120
|
+
|
|
7183
7121
|
SelectFromRange
|
|
7184
|
-
|
|
7122
|
+
|
|
7185
7123
|
ViewHandBook
|
|
7186
7124
|
*/
|
|
7187
7125
|
|
|
@@ -7196,31 +7134,31 @@ var AttributeSelectorType;
|
|
|
7196
7134
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7197
7135
|
/**
|
|
7198
7136
|
*
|
|
7199
|
-
|
|
7137
|
+
|
|
7200
7138
|
Unknown
|
|
7201
|
-
|
|
7139
|
+
|
|
7202
7140
|
String
|
|
7203
|
-
|
|
7141
|
+
|
|
7204
7142
|
Int32
|
|
7205
|
-
|
|
7143
|
+
|
|
7206
7144
|
Int64
|
|
7207
|
-
|
|
7145
|
+
|
|
7208
7146
|
Double
|
|
7209
|
-
|
|
7147
|
+
|
|
7210
7148
|
DateTime
|
|
7211
|
-
|
|
7149
|
+
|
|
7212
7150
|
Boolean
|
|
7213
|
-
|
|
7151
|
+
|
|
7214
7152
|
Point
|
|
7215
|
-
|
|
7153
|
+
|
|
7216
7154
|
Polyline
|
|
7217
|
-
|
|
7155
|
+
|
|
7218
7156
|
MultiPolygon
|
|
7219
|
-
|
|
7157
|
+
|
|
7220
7158
|
Multipoint
|
|
7221
|
-
|
|
7159
|
+
|
|
7222
7160
|
H3Index
|
|
7223
|
-
|
|
7161
|
+
|
|
7224
7162
|
Json
|
|
7225
7163
|
*/
|
|
7226
7164
|
|
|
@@ -7244,9 +7182,9 @@ var AttributeType;
|
|
|
7244
7182
|
})(AttributeType || (AttributeType = {}));
|
|
7245
7183
|
/**
|
|
7246
7184
|
*
|
|
7247
|
-
|
|
7185
|
+
|
|
7248
7186
|
authorization_code
|
|
7249
|
-
|
|
7187
|
+
|
|
7250
7188
|
refresh_token
|
|
7251
7189
|
*/
|
|
7252
7190
|
|
|
@@ -7259,19 +7197,19 @@ var AuthorizationGrant;
|
|
|
7259
7197
|
})(AuthorizationGrant || (AuthorizationGrant = {}));
|
|
7260
7198
|
/**
|
|
7261
7199
|
*
|
|
7262
|
-
|
|
7200
|
+
|
|
7263
7201
|
None
|
|
7264
|
-
|
|
7202
|
+
|
|
7265
7203
|
Map
|
|
7266
|
-
|
|
7204
|
+
|
|
7267
7205
|
Layer
|
|
7268
|
-
|
|
7206
|
+
|
|
7269
7207
|
Table
|
|
7270
|
-
|
|
7208
|
+
|
|
7271
7209
|
File
|
|
7272
|
-
|
|
7210
|
+
|
|
7273
7211
|
TaskPrototype
|
|
7274
|
-
|
|
7212
|
+
|
|
7275
7213
|
DataSource
|
|
7276
7214
|
*/
|
|
7277
7215
|
|
|
@@ -7289,15 +7227,15 @@ var CatalogResourceType;
|
|
|
7289
7227
|
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
7290
7228
|
/**
|
|
7291
7229
|
* Describes classification methods.
|
|
7292
|
-
|
|
7230
|
+
|
|
7293
7231
|
none
|
|
7294
|
-
|
|
7232
|
+
|
|
7295
7233
|
naturalBreaks
|
|
7296
|
-
|
|
7234
|
+
|
|
7297
7235
|
equalInterval
|
|
7298
|
-
|
|
7236
|
+
|
|
7299
7237
|
quantile
|
|
7300
|
-
|
|
7238
|
+
|
|
7301
7239
|
unique
|
|
7302
7240
|
*/
|
|
7303
7241
|
|
|
@@ -7313,11 +7251,11 @@ var ClassificationType;
|
|
|
7313
7251
|
})(ClassificationType || (ClassificationType = {}));
|
|
7314
7252
|
/**
|
|
7315
7253
|
*
|
|
7316
|
-
|
|
7254
|
+
|
|
7317
7255
|
decimal
|
|
7318
|
-
|
|
7256
|
+
|
|
7319
7257
|
dateTime
|
|
7320
|
-
|
|
7258
|
+
|
|
7321
7259
|
text
|
|
7322
7260
|
*/
|
|
7323
7261
|
|
|
@@ -7331,55 +7269,55 @@ var ClassifyAttributeType;
|
|
|
7331
7269
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
7332
7270
|
/**
|
|
7333
7271
|
*
|
|
7334
|
-
|
|
7272
|
+
|
|
7335
7273
|
Unknown
|
|
7336
|
-
|
|
7274
|
+
|
|
7337
7275
|
SerializeError
|
|
7338
|
-
|
|
7276
|
+
|
|
7339
7277
|
InvalidDataService
|
|
7340
|
-
|
|
7278
|
+
|
|
7341
7279
|
InvalidConfiguration
|
|
7342
|
-
|
|
7280
|
+
|
|
7343
7281
|
InvalidDataServiceName
|
|
7344
|
-
|
|
7282
|
+
|
|
7345
7283
|
InvalidTableName
|
|
7346
|
-
|
|
7284
|
+
|
|
7347
7285
|
InvalidLayerName
|
|
7348
|
-
|
|
7286
|
+
|
|
7349
7287
|
ResourceNotFound
|
|
7350
|
-
|
|
7288
|
+
|
|
7351
7289
|
InvalidCondition
|
|
7352
|
-
|
|
7290
|
+
|
|
7353
7291
|
InvalidAttributes
|
|
7354
|
-
|
|
7292
|
+
|
|
7355
7293
|
InvalidIdAttribute
|
|
7356
|
-
|
|
7294
|
+
|
|
7357
7295
|
InvalidGeometryAttribute
|
|
7358
|
-
|
|
7296
|
+
|
|
7359
7297
|
InvalidGeometryAttributeType
|
|
7360
|
-
|
|
7298
|
+
|
|
7361
7299
|
InvalidColumnName
|
|
7362
|
-
|
|
7300
|
+
|
|
7363
7301
|
InvalidIdColumnSettings
|
|
7364
|
-
|
|
7302
|
+
|
|
7365
7303
|
ColumnNotExistsInTable
|
|
7366
|
-
|
|
7304
|
+
|
|
7367
7305
|
InvalidStyle
|
|
7368
|
-
|
|
7306
|
+
|
|
7369
7307
|
InvalidLayerType
|
|
7370
|
-
|
|
7308
|
+
|
|
7371
7309
|
ColumnLoadingError
|
|
7372
|
-
|
|
7310
|
+
|
|
7373
7311
|
InvalidAttributeFormat
|
|
7374
|
-
|
|
7312
|
+
|
|
7375
7313
|
DataSourceNotFound
|
|
7376
|
-
|
|
7314
|
+
|
|
7377
7315
|
DuplicateColumns
|
|
7378
|
-
|
|
7316
|
+
|
|
7379
7317
|
DuplicateAttributes
|
|
7380
|
-
|
|
7318
|
+
|
|
7381
7319
|
TableWithoutColumns
|
|
7382
|
-
|
|
7320
|
+
|
|
7383
7321
|
InvalidTableReferenceConfiguration
|
|
7384
7322
|
*/
|
|
7385
7323
|
|
|
@@ -7415,13 +7353,13 @@ var ConfigurationErrorEnum;
|
|
|
7415
7353
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
7416
7354
|
/**
|
|
7417
7355
|
*
|
|
7418
|
-
|
|
7356
|
+
|
|
7419
7357
|
Postgres
|
|
7420
|
-
|
|
7358
|
+
|
|
7421
7359
|
Trino
|
|
7422
|
-
|
|
7360
|
+
|
|
7423
7361
|
S3
|
|
7424
|
-
|
|
7362
|
+
|
|
7425
7363
|
GisServer
|
|
7426
7364
|
*/
|
|
7427
7365
|
|
|
@@ -7436,15 +7374,15 @@ var DataSourceType;
|
|
|
7436
7374
|
})(DataSourceType || (DataSourceType = {}));
|
|
7437
7375
|
/**
|
|
7438
7376
|
* Type of the error.
|
|
7439
|
-
|
|
7377
|
+
|
|
7440
7378
|
ResourceLimitExceeded
|
|
7441
|
-
|
|
7379
|
+
|
|
7442
7380
|
ResourceNotFound
|
|
7443
|
-
|
|
7381
|
+
|
|
7444
7382
|
InternalError
|
|
7445
|
-
|
|
7383
|
+
|
|
7446
7384
|
BadRequest
|
|
7447
|
-
|
|
7385
|
+
|
|
7448
7386
|
DuplicateContent
|
|
7449
7387
|
*/
|
|
7450
7388
|
|
|
@@ -7495,11 +7433,11 @@ var ErrorType;
|
|
|
7495
7433
|
})(ErrorType || (ErrorType = {}));
|
|
7496
7434
|
/**
|
|
7497
7435
|
* Sets whether font should be styled.
|
|
7498
|
-
|
|
7436
|
+
|
|
7499
7437
|
normal
|
|
7500
|
-
|
|
7438
|
+
|
|
7501
7439
|
oblique
|
|
7502
|
-
|
|
7440
|
+
|
|
7503
7441
|
italic
|
|
7504
7442
|
*/
|
|
7505
7443
|
|
|
@@ -7513,27 +7451,27 @@ var FontStyle;
|
|
|
7513
7451
|
})(FontStyle || (FontStyle = {}));
|
|
7514
7452
|
/**
|
|
7515
7453
|
* Specifies the weight (or boldness) of the font.
|
|
7516
|
-
|
|
7454
|
+
|
|
7517
7455
|
Thin
|
|
7518
|
-
|
|
7456
|
+
|
|
7519
7457
|
ExtraLight
|
|
7520
|
-
|
|
7458
|
+
|
|
7521
7459
|
Light
|
|
7522
|
-
|
|
7460
|
+
|
|
7523
7461
|
SemiLight
|
|
7524
|
-
|
|
7462
|
+
|
|
7525
7463
|
Normal
|
|
7526
|
-
|
|
7464
|
+
|
|
7527
7465
|
Medium
|
|
7528
|
-
|
|
7466
|
+
|
|
7529
7467
|
DemiBold
|
|
7530
|
-
|
|
7468
|
+
|
|
7531
7469
|
Bold
|
|
7532
|
-
|
|
7470
|
+
|
|
7533
7471
|
ExtraBold
|
|
7534
|
-
|
|
7472
|
+
|
|
7535
7473
|
Black
|
|
7536
|
-
|
|
7474
|
+
|
|
7537
7475
|
ExtraBlack
|
|
7538
7476
|
*/
|
|
7539
7477
|
|
|
@@ -7555,17 +7493,17 @@ var FontWeight;
|
|
|
7555
7493
|
})(FontWeight || (FontWeight = {}));
|
|
7556
7494
|
/**
|
|
7557
7495
|
*
|
|
7558
|
-
|
|
7496
|
+
|
|
7559
7497
|
unknown
|
|
7560
|
-
|
|
7498
|
+
|
|
7561
7499
|
point
|
|
7562
|
-
|
|
7500
|
+
|
|
7563
7501
|
polyline
|
|
7564
|
-
|
|
7502
|
+
|
|
7565
7503
|
multipolygon
|
|
7566
|
-
|
|
7504
|
+
|
|
7567
7505
|
envelope
|
|
7568
|
-
|
|
7506
|
+
|
|
7569
7507
|
multipoint
|
|
7570
7508
|
*/
|
|
7571
7509
|
|
|
@@ -7582,13 +7520,13 @@ var GeometryType;
|
|
|
7582
7520
|
})(GeometryType || (GeometryType = {}));
|
|
7583
7521
|
/**
|
|
7584
7522
|
* Resource group.
|
|
7585
|
-
|
|
7523
|
+
|
|
7586
7524
|
my
|
|
7587
|
-
|
|
7525
|
+
|
|
7588
7526
|
role
|
|
7589
|
-
|
|
7527
|
+
|
|
7590
7528
|
public
|
|
7591
|
-
|
|
7529
|
+
|
|
7592
7530
|
all
|
|
7593
7531
|
*/
|
|
7594
7532
|
|
|
@@ -7603,13 +7541,13 @@ var Group;
|
|
|
7603
7541
|
})(Group || (Group = {}));
|
|
7604
7542
|
/**
|
|
7605
7543
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
7606
|
-
|
|
7544
|
+
|
|
7607
7545
|
Flat
|
|
7608
|
-
|
|
7546
|
+
|
|
7609
7547
|
Square
|
|
7610
|
-
|
|
7548
|
+
|
|
7611
7549
|
Round
|
|
7612
|
-
|
|
7550
|
+
|
|
7613
7551
|
Triangle
|
|
7614
7552
|
*/
|
|
7615
7553
|
|
|
@@ -7624,29 +7562,29 @@ var LineCapStyle;
|
|
|
7624
7562
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
7625
7563
|
/**
|
|
7626
7564
|
* Type of the line ending.
|
|
7627
|
-
|
|
7565
|
+
|
|
7628
7566
|
none
|
|
7629
|
-
|
|
7567
|
+
|
|
7630
7568
|
arrow
|
|
7631
|
-
|
|
7569
|
+
|
|
7632
7570
|
filledArrow
|
|
7633
|
-
|
|
7571
|
+
|
|
7634
7572
|
square
|
|
7635
|
-
|
|
7573
|
+
|
|
7636
7574
|
filledSquare
|
|
7637
|
-
|
|
7575
|
+
|
|
7638
7576
|
circle
|
|
7639
|
-
|
|
7577
|
+
|
|
7640
7578
|
filledCircle
|
|
7641
|
-
|
|
7579
|
+
|
|
7642
7580
|
diamond
|
|
7643
|
-
|
|
7581
|
+
|
|
7644
7582
|
filledDiamond
|
|
7645
|
-
|
|
7583
|
+
|
|
7646
7584
|
roundSquare
|
|
7647
|
-
|
|
7585
|
+
|
|
7648
7586
|
filledRoundSquare
|
|
7649
|
-
|
|
7587
|
+
|
|
7650
7588
|
svg
|
|
7651
7589
|
*/
|
|
7652
7590
|
|
|
@@ -7669,11 +7607,11 @@ var LineEndingType;
|
|
|
7669
7607
|
})(LineEndingType || (LineEndingType = {}));
|
|
7670
7608
|
/**
|
|
7671
7609
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
7672
|
-
|
|
7610
|
+
|
|
7673
7611
|
Miter
|
|
7674
|
-
|
|
7612
|
+
|
|
7675
7613
|
Bevel
|
|
7676
|
-
|
|
7614
|
+
|
|
7677
7615
|
Round
|
|
7678
7616
|
*/
|
|
7679
7617
|
|
|
@@ -7687,11 +7625,11 @@ var LineJoinType;
|
|
|
7687
7625
|
})(LineJoinType || (LineJoinType = {}));
|
|
7688
7626
|
/**
|
|
7689
7627
|
* Filter exists resources by owner.
|
|
7690
|
-
|
|
7628
|
+
|
|
7691
7629
|
My
|
|
7692
|
-
|
|
7630
|
+
|
|
7693
7631
|
Shared
|
|
7694
|
-
|
|
7632
|
+
|
|
7695
7633
|
Public
|
|
7696
7634
|
*/
|
|
7697
7635
|
|
|
@@ -7705,9 +7643,9 @@ var OwnerFilter;
|
|
|
7705
7643
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
7706
7644
|
/**
|
|
7707
7645
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
7708
|
-
|
|
7646
|
+
|
|
7709
7647
|
xyz
|
|
7710
|
-
|
|
7648
|
+
|
|
7711
7649
|
tms
|
|
7712
7650
|
*/
|
|
7713
7651
|
|
|
@@ -7720,19 +7658,19 @@ var PbfSchema;
|
|
|
7720
7658
|
})(PbfSchema || (PbfSchema = {}));
|
|
7721
7659
|
/**
|
|
7722
7660
|
*
|
|
7723
|
-
|
|
7661
|
+
|
|
7724
7662
|
none
|
|
7725
|
-
|
|
7663
|
+
|
|
7726
7664
|
configure
|
|
7727
|
-
|
|
7665
|
+
|
|
7728
7666
|
write
|
|
7729
|
-
|
|
7667
|
+
|
|
7730
7668
|
read
|
|
7731
|
-
|
|
7669
|
+
|
|
7732
7670
|
read,configure
|
|
7733
|
-
|
|
7671
|
+
|
|
7734
7672
|
read,write
|
|
7735
|
-
|
|
7673
|
+
|
|
7736
7674
|
read,write,configure
|
|
7737
7675
|
*/
|
|
7738
7676
|
|
|
@@ -7750,21 +7688,21 @@ var Permissions;
|
|
|
7750
7688
|
})(Permissions || (Permissions = {}));
|
|
7751
7689
|
/**
|
|
7752
7690
|
* Type of the authorization policy.
|
|
7753
|
-
|
|
7691
|
+
|
|
7754
7692
|
Unknown
|
|
7755
|
-
|
|
7693
|
+
|
|
7756
7694
|
CreateTable
|
|
7757
|
-
|
|
7695
|
+
|
|
7758
7696
|
CreateLayer
|
|
7759
|
-
|
|
7697
|
+
|
|
7760
7698
|
CreateProject
|
|
7761
|
-
|
|
7699
|
+
|
|
7762
7700
|
MaxFeaturesInOneTable
|
|
7763
|
-
|
|
7701
|
+
|
|
7764
7702
|
MaxObjectsToExport
|
|
7765
|
-
|
|
7703
|
+
|
|
7766
7704
|
MaxUploadContentSize
|
|
7767
|
-
|
|
7705
|
+
|
|
7768
7706
|
MaxEqlQueryParametersValues
|
|
7769
7707
|
*/
|
|
7770
7708
|
|
|
@@ -7783,11 +7721,11 @@ var PolicyType;
|
|
|
7783
7721
|
})(PolicyType || (PolicyType = {}));
|
|
7784
7722
|
/**
|
|
7785
7723
|
* Stream quality.
|
|
7786
|
-
|
|
7724
|
+
|
|
7787
7725
|
Low
|
|
7788
|
-
|
|
7726
|
+
|
|
7789
7727
|
Medium
|
|
7790
|
-
|
|
7728
|
+
|
|
7791
7729
|
High
|
|
7792
7730
|
*/
|
|
7793
7731
|
|
|
@@ -7801,23 +7739,23 @@ var Quality;
|
|
|
7801
7739
|
})(Quality || (Quality = {}));
|
|
7802
7740
|
/**
|
|
7803
7741
|
* RemoteTaskStatus enum.
|
|
7804
|
-
|
|
7742
|
+
|
|
7805
7743
|
Init
|
|
7806
|
-
|
|
7744
|
+
|
|
7807
7745
|
Process
|
|
7808
|
-
|
|
7746
|
+
|
|
7809
7747
|
Completed
|
|
7810
|
-
|
|
7748
|
+
|
|
7811
7749
|
Interrupted
|
|
7812
|
-
|
|
7750
|
+
|
|
7813
7751
|
Error
|
|
7814
|
-
|
|
7752
|
+
|
|
7815
7753
|
Timeout
|
|
7816
|
-
|
|
7754
|
+
|
|
7817
7755
|
Waiting
|
|
7818
|
-
|
|
7756
|
+
|
|
7819
7757
|
InQueue
|
|
7820
|
-
|
|
7758
|
+
|
|
7821
7759
|
Unknown
|
|
7822
7760
|
*/
|
|
7823
7761
|
|
|
@@ -7837,15 +7775,15 @@ var RemoteTaskStatus;
|
|
|
7837
7775
|
})(RemoteTaskStatus || (RemoteTaskStatus = {}));
|
|
7838
7776
|
/**
|
|
7839
7777
|
* Resources types filter.
|
|
7840
|
-
|
|
7778
|
+
|
|
7841
7779
|
RemoteTileService
|
|
7842
|
-
|
|
7780
|
+
|
|
7843
7781
|
ProxyService
|
|
7844
|
-
|
|
7782
|
+
|
|
7845
7783
|
PostgresLayerService
|
|
7846
|
-
|
|
7784
|
+
|
|
7847
7785
|
QueryLayerService
|
|
7848
|
-
|
|
7786
|
+
|
|
7849
7787
|
TileCatalogTable
|
|
7850
7788
|
*/
|
|
7851
7789
|
|
|
@@ -7861,21 +7799,21 @@ var ResourceSubTypeFilter;
|
|
|
7861
7799
|
})(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
|
|
7862
7800
|
/**
|
|
7863
7801
|
*
|
|
7864
|
-
|
|
7802
|
+
|
|
7865
7803
|
Unknown
|
|
7866
|
-
|
|
7804
|
+
|
|
7867
7805
|
table
|
|
7868
|
-
|
|
7806
|
+
|
|
7869
7807
|
layer
|
|
7870
|
-
|
|
7808
|
+
|
|
7871
7809
|
project
|
|
7872
|
-
|
|
7810
|
+
|
|
7873
7811
|
file
|
|
7874
|
-
|
|
7812
|
+
|
|
7875
7813
|
feature
|
|
7876
|
-
|
|
7814
|
+
|
|
7877
7815
|
tag
|
|
7878
|
-
|
|
7816
|
+
|
|
7879
7817
|
datasource
|
|
7880
7818
|
*/
|
|
7881
7819
|
|
|
@@ -7894,23 +7832,23 @@ var ResourceType;
|
|
|
7894
7832
|
})(ResourceType || (ResourceType = {}));
|
|
7895
7833
|
/**
|
|
7896
7834
|
* Resources types filter.
|
|
7897
|
-
|
|
7835
|
+
|
|
7898
7836
|
Map
|
|
7899
|
-
|
|
7837
|
+
|
|
7900
7838
|
Layer
|
|
7901
|
-
|
|
7839
|
+
|
|
7902
7840
|
Table
|
|
7903
|
-
|
|
7841
|
+
|
|
7904
7842
|
RasterCatalog
|
|
7905
|
-
|
|
7843
|
+
|
|
7906
7844
|
ProxyService
|
|
7907
|
-
|
|
7845
|
+
|
|
7908
7846
|
RemoteTileService
|
|
7909
|
-
|
|
7847
|
+
|
|
7910
7848
|
File
|
|
7911
|
-
|
|
7849
|
+
|
|
7912
7850
|
DataSource
|
|
7913
|
-
|
|
7851
|
+
|
|
7914
7852
|
TaskPrototype
|
|
7915
7853
|
*/
|
|
7916
7854
|
|
|
@@ -7938,9 +7876,9 @@ var ResourceTypeLink;
|
|
|
7938
7876
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
7939
7877
|
/**
|
|
7940
7878
|
*
|
|
7941
|
-
|
|
7879
|
+
|
|
7942
7880
|
code
|
|
7943
|
-
|
|
7881
|
+
|
|
7944
7882
|
token
|
|
7945
7883
|
*/
|
|
7946
7884
|
|
|
@@ -7953,11 +7891,11 @@ var ResponseType;
|
|
|
7953
7891
|
})(ResponseType || (ResponseType = {}));
|
|
7954
7892
|
/**
|
|
7955
7893
|
*
|
|
7956
|
-
|
|
7894
|
+
|
|
7957
7895
|
Basic
|
|
7958
|
-
|
|
7896
|
+
|
|
7959
7897
|
PreserveTopology
|
|
7960
|
-
|
|
7898
|
+
|
|
7961
7899
|
VW
|
|
7962
7900
|
*/
|
|
7963
7901
|
|
|
@@ -7971,13 +7909,13 @@ var SimplifyType;
|
|
|
7971
7909
|
})(SimplifyType || (SimplifyType = {}));
|
|
7972
7910
|
/**
|
|
7973
7911
|
*
|
|
7974
|
-
|
|
7912
|
+
|
|
7975
7913
|
None
|
|
7976
|
-
|
|
7914
|
+
|
|
7977
7915
|
Image
|
|
7978
|
-
|
|
7916
|
+
|
|
7979
7917
|
PkkCode
|
|
7980
|
-
|
|
7918
|
+
|
|
7981
7919
|
Attachments
|
|
7982
7920
|
*/
|
|
7983
7921
|
|
|
@@ -7992,9 +7930,9 @@ var StringSubType;
|
|
|
7992
7930
|
})(StringSubType || (StringSubType = {}));
|
|
7993
7931
|
/**
|
|
7994
7932
|
* TaskPrototypeSubType.
|
|
7995
|
-
|
|
7933
|
+
|
|
7996
7934
|
SpTask
|
|
7997
|
-
|
|
7935
|
+
|
|
7998
7936
|
PythonTask
|
|
7999
7937
|
*/
|
|
8000
7938
|
|
|
@@ -8007,13 +7945,13 @@ var TaskResourceSubType;
|
|
|
8007
7945
|
})(TaskResourceSubType || (TaskResourceSubType = {}));
|
|
8008
7946
|
/**
|
|
8009
7947
|
* Sets the horizontal alignment of text.
|
|
8010
|
-
|
|
7948
|
+
|
|
8011
7949
|
right
|
|
8012
|
-
|
|
7950
|
+
|
|
8013
7951
|
left
|
|
8014
|
-
|
|
7952
|
+
|
|
8015
7953
|
center
|
|
8016
|
-
|
|
7954
|
+
|
|
8017
7955
|
justified
|
|
8018
7956
|
*/
|
|
8019
7957
|
|
|
@@ -8028,11 +7966,11 @@ var TextAlignment;
|
|
|
8028
7966
|
})(TextAlignment || (TextAlignment = {}));
|
|
8029
7967
|
/**
|
|
8030
7968
|
* Sets the vertical alignment of text.
|
|
8031
|
-
|
|
7969
|
+
|
|
8032
7970
|
top
|
|
8033
|
-
|
|
7971
|
+
|
|
8034
7972
|
bottom
|
|
8035
|
-
|
|
7973
|
+
|
|
8036
7974
|
middle
|
|
8037
7975
|
*/
|
|
8038
7976
|
|
|
@@ -8046,11 +7984,11 @@ var TextVerticalAlignment;
|
|
|
8046
7984
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8047
7985
|
/**
|
|
8048
7986
|
*
|
|
8049
|
-
|
|
7987
|
+
|
|
8050
7988
|
Task
|
|
8051
|
-
|
|
7989
|
+
|
|
8052
7990
|
Rest
|
|
8053
|
-
|
|
7991
|
+
|
|
8054
7992
|
Both
|
|
8055
7993
|
*/
|
|
8056
7994
|
|
|
@@ -8064,49 +8002,49 @@ var WorkerMethodType;
|
|
|
8064
8002
|
})(WorkerMethodType || (WorkerMethodType = {}));
|
|
8065
8003
|
/**
|
|
8066
8004
|
*
|
|
8067
|
-
|
|
8005
|
+
|
|
8068
8006
|
Int32
|
|
8069
|
-
|
|
8007
|
+
|
|
8070
8008
|
Int64
|
|
8071
|
-
|
|
8009
|
+
|
|
8072
8010
|
Double
|
|
8073
|
-
|
|
8011
|
+
|
|
8074
8012
|
String
|
|
8075
|
-
|
|
8013
|
+
|
|
8076
8014
|
Boolean
|
|
8077
|
-
|
|
8015
|
+
|
|
8078
8016
|
DateTime
|
|
8079
|
-
|
|
8017
|
+
|
|
8080
8018
|
Point
|
|
8081
|
-
|
|
8019
|
+
|
|
8082
8020
|
Geometry
|
|
8083
|
-
|
|
8021
|
+
|
|
8084
8022
|
Polyline
|
|
8085
|
-
|
|
8023
|
+
|
|
8086
8024
|
MultiPolygon
|
|
8087
|
-
|
|
8025
|
+
|
|
8088
8026
|
Polygon
|
|
8089
|
-
|
|
8027
|
+
|
|
8090
8028
|
Multipoint
|
|
8091
|
-
|
|
8029
|
+
|
|
8092
8030
|
IntergerArray
|
|
8093
|
-
|
|
8031
|
+
|
|
8094
8032
|
DoubleArray
|
|
8095
|
-
|
|
8033
|
+
|
|
8096
8034
|
StringArray
|
|
8097
|
-
|
|
8035
|
+
|
|
8098
8036
|
SourceEql
|
|
8099
|
-
|
|
8037
|
+
|
|
8100
8038
|
Layer
|
|
8101
|
-
|
|
8039
|
+
|
|
8102
8040
|
Table
|
|
8103
|
-
|
|
8041
|
+
|
|
8104
8042
|
Folder
|
|
8105
|
-
|
|
8043
|
+
|
|
8106
8044
|
Json
|
|
8107
|
-
|
|
8045
|
+
|
|
8108
8046
|
Attribute
|
|
8109
|
-
|
|
8047
|
+
|
|
8110
8048
|
AttributeArray
|
|
8111
8049
|
*/
|
|
8112
8050
|
|
|
@@ -8138,5 +8076,5 @@ var WorkerSettingsFieldType;
|
|
|
8138
8076
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
8139
8077
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
8140
8078
|
|
|
8141
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER,
|
|
8079
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
8142
8080
|
//# sourceMappingURL=api.esm.js.map
|