@evergis/api 3.0.186 → 3.0.187
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/__generated__/CatalogService.d.ts +25 -3
- package/dist/__generated__/LayersService.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 +2 -2
- package/dist/__generated__/TagsService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +313 -268
- package/dist/api.cjs.development.js +55 -28
- 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 +260 -227
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Projects.d.ts +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/dist/services/Tables.d.ts +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -30,9 +30,6 @@ function _defineProperties(target, props) {
|
|
|
30
30
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
31
31
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
32
32
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
33
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
34
|
-
writable: false
|
|
35
|
-
});
|
|
36
33
|
return Constructor;
|
|
37
34
|
}
|
|
38
35
|
|
|
@@ -66,9 +63,6 @@ function _inherits(subClass, superClass) {
|
|
|
66
63
|
configurable: true
|
|
67
64
|
}
|
|
68
65
|
});
|
|
69
|
-
Object.defineProperty(subClass, "prototype", {
|
|
70
|
-
writable: false
|
|
71
|
-
});
|
|
72
66
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
73
67
|
}
|
|
74
68
|
|
|
@@ -127,8 +121,6 @@ function _assertThisInitialized(self) {
|
|
|
127
121
|
function _possibleConstructorReturn(self, call) {
|
|
128
122
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
129
123
|
return call;
|
|
130
|
-
} else if (call !== void 0) {
|
|
131
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
132
124
|
}
|
|
133
125
|
|
|
134
126
|
return _assertThisInitialized(self);
|
|
@@ -162,7 +154,7 @@ function _superPropBase(object, property) {
|
|
|
162
154
|
return object;
|
|
163
155
|
}
|
|
164
156
|
|
|
165
|
-
function _get() {
|
|
157
|
+
function _get(target, property, receiver) {
|
|
166
158
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
167
159
|
_get = Reflect.get;
|
|
168
160
|
} else {
|
|
@@ -173,14 +165,14 @@ function _get() {
|
|
|
173
165
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
174
166
|
|
|
175
167
|
if (desc.get) {
|
|
176
|
-
return desc.get.call(
|
|
168
|
+
return desc.get.call(receiver);
|
|
177
169
|
}
|
|
178
170
|
|
|
179
171
|
return desc.value;
|
|
180
172
|
};
|
|
181
173
|
}
|
|
182
174
|
|
|
183
|
-
return _get
|
|
175
|
+
return _get(target, property, receiver || target);
|
|
184
176
|
}
|
|
185
177
|
|
|
186
178
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -563,6 +555,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
563
555
|
function getAll(query) {
|
|
564
556
|
return this.http.get("/resources", query).json();
|
|
565
557
|
}
|
|
558
|
+
/**
|
|
559
|
+
* No description
|
|
560
|
+
*
|
|
561
|
+
* @tags Catalog
|
|
562
|
+
* @name PostGetAll
|
|
563
|
+
* @operationId CatalogController_PostGetAll
|
|
564
|
+
* @summary Get all resource with given.
|
|
565
|
+
* @request POST:/resources
|
|
566
|
+
* @response `200` OK
|
|
567
|
+
*/
|
|
568
|
+
|
|
569
|
+
}, {
|
|
570
|
+
key: "postGetAll",
|
|
571
|
+
value: function postGetAll(data) {
|
|
572
|
+
return this.http.post("/resources", data).json();
|
|
573
|
+
}
|
|
566
574
|
/**
|
|
567
575
|
* No description
|
|
568
576
|
*
|
|
@@ -675,6 +683,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
675
683
|
value: function getPermissions(resourceId) {
|
|
676
684
|
return this.http.get("/resources/" + resourceId + "/permissions").json();
|
|
677
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
* No description
|
|
688
|
+
*
|
|
689
|
+
* @tags Catalog
|
|
690
|
+
* @name SetPermissions1
|
|
691
|
+
* @operationId CatalogController_SetPermissions_1
|
|
692
|
+
* @summary Set permissions to the resource.
|
|
693
|
+
* @request PUT:/resources/{resourceId}/permissions
|
|
694
|
+
* @response `200` OK
|
|
695
|
+
*/
|
|
696
|
+
|
|
697
|
+
}, {
|
|
698
|
+
key: "setPermissions1",
|
|
699
|
+
value: function setPermissions1(resourceId, data) {
|
|
700
|
+
return this.http.put("/resources/" + resourceId + "/permissions", data).json();
|
|
701
|
+
}
|
|
678
702
|
/**
|
|
679
703
|
* No description
|
|
680
704
|
*
|
|
@@ -682,14 +706,14 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
682
706
|
* @name SetPermissions
|
|
683
707
|
* @operationId CatalogController_SetPermissions
|
|
684
708
|
* @summary Set permissions to the resource.
|
|
685
|
-
* @request PUT:/resources/
|
|
709
|
+
* @request PUT:/resources/permissions
|
|
686
710
|
* @response `200` OK
|
|
687
711
|
*/
|
|
688
712
|
|
|
689
713
|
}, {
|
|
690
714
|
key: "setPermissions",
|
|
691
|
-
value: function setPermissions(
|
|
692
|
-
return this.http.put("/resources/
|
|
715
|
+
value: function setPermissions(data) {
|
|
716
|
+
return this.http.put("/resources/permissions", data).json();
|
|
693
717
|
}
|
|
694
718
|
/**
|
|
695
719
|
* No description
|
|
@@ -4167,7 +4191,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4167
4191
|
}, {
|
|
4168
4192
|
key: "getDataLayout",
|
|
4169
4193
|
value: function getDataLayout(name) {
|
|
4170
|
-
return this.http.get("/layers/" + name + "/style/sprite.json").
|
|
4194
|
+
return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
|
|
4171
4195
|
}
|
|
4172
4196
|
/**
|
|
4173
4197
|
* No description
|
|
@@ -4914,8 +4938,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4914
4938
|
|| event.code === 4002
|
|
4915
4939
|
/* InvalidSession */
|
|
4916
4940
|
) {
|
|
4917
|
-
|
|
4918
|
-
|
|
4941
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
4942
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4919
4943
|
_this.connectStatus = ConnectionStatus.Break;
|
|
4920
4944
|
_this.reconnectTries++;
|
|
4921
4945
|
|
|
@@ -5749,12 +5773,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5749
5773
|
}, {
|
|
5750
5774
|
key: "getDependentNames",
|
|
5751
5775
|
value: function getDependentNames(deps, depType) {
|
|
5752
|
-
return deps.filter(_ref => {
|
|
5776
|
+
return deps.filter((_ref) => {
|
|
5753
5777
|
let {
|
|
5754
5778
|
type
|
|
5755
5779
|
} = _ref;
|
|
5756
5780
|
return type === depType;
|
|
5757
|
-
}).map(_ref2 => {
|
|
5781
|
+
}).map((_ref2) => {
|
|
5758
5782
|
let {
|
|
5759
5783
|
name
|
|
5760
5784
|
} = _ref2;
|
|
@@ -6210,7 +6234,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
6210
6234
|
const taskProgress = await this.getTaskProgress(id);
|
|
6211
6235
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
6212
6236
|
|
|
6213
|
-
const taskResultCallback = async _ref => {
|
|
6237
|
+
const taskResultCallback = async (_ref) => {
|
|
6214
6238
|
let {
|
|
6215
6239
|
data
|
|
6216
6240
|
} = _ref;
|
|
@@ -7889,47 +7913,47 @@ function isFeatureLayer(layer) {
|
|
|
7889
7913
|
|
|
7890
7914
|
/**
|
|
7891
7915
|
*
|
|
7892
|
-
|
|
7916
|
+
|
|
7893
7917
|
None
|
|
7894
|
-
|
|
7918
|
+
|
|
7895
7919
|
Array
|
|
7896
|
-
|
|
7920
|
+
|
|
7897
7921
|
Min
|
|
7898
|
-
|
|
7922
|
+
|
|
7899
7923
|
Max
|
|
7900
|
-
|
|
7924
|
+
|
|
7901
7925
|
Avg
|
|
7902
|
-
|
|
7926
|
+
|
|
7903
7927
|
Sum
|
|
7904
|
-
|
|
7928
|
+
|
|
7905
7929
|
Extent
|
|
7906
|
-
|
|
7930
|
+
|
|
7907
7931
|
H3
|
|
7908
|
-
|
|
7932
|
+
|
|
7909
7933
|
Count
|
|
7910
|
-
|
|
7934
|
+
|
|
7911
7935
|
TotalCount
|
|
7912
|
-
|
|
7936
|
+
|
|
7913
7937
|
DistinctCount
|
|
7914
|
-
|
|
7938
|
+
|
|
7915
7939
|
First
|
|
7916
|
-
|
|
7940
|
+
|
|
7917
7941
|
Last
|
|
7918
|
-
|
|
7942
|
+
|
|
7919
7943
|
Median
|
|
7920
|
-
|
|
7944
|
+
|
|
7921
7945
|
Mod
|
|
7922
|
-
|
|
7946
|
+
|
|
7923
7947
|
StdDeviation
|
|
7924
|
-
|
|
7948
|
+
|
|
7925
7949
|
SumOfProduct
|
|
7926
|
-
|
|
7950
|
+
|
|
7927
7951
|
OnlyValue
|
|
7928
|
-
|
|
7952
|
+
|
|
7929
7953
|
WeightedAvg
|
|
7930
|
-
|
|
7954
|
+
|
|
7931
7955
|
DensityIndicators
|
|
7932
|
-
|
|
7956
|
+
|
|
7933
7957
|
DividedSum
|
|
7934
7958
|
*/
|
|
7935
7959
|
var AggregationFunction;
|
|
@@ -7959,13 +7983,13 @@ var AggregationFunction;
|
|
|
7959
7983
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7960
7984
|
/**
|
|
7961
7985
|
*
|
|
7962
|
-
|
|
7986
|
+
|
|
7963
7987
|
None
|
|
7964
|
-
|
|
7988
|
+
|
|
7965
7989
|
SelectFromHandBook
|
|
7966
|
-
|
|
7990
|
+
|
|
7967
7991
|
SelectFromRange
|
|
7968
|
-
|
|
7992
|
+
|
|
7969
7993
|
ViewHandBook
|
|
7970
7994
|
*/
|
|
7971
7995
|
|
|
@@ -7980,31 +8004,31 @@ var AttributeSelectorType;
|
|
|
7980
8004
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7981
8005
|
/**
|
|
7982
8006
|
*
|
|
7983
|
-
|
|
8007
|
+
|
|
7984
8008
|
Unknown
|
|
7985
|
-
|
|
8009
|
+
|
|
7986
8010
|
String
|
|
7987
|
-
|
|
8011
|
+
|
|
7988
8012
|
Int32
|
|
7989
|
-
|
|
8013
|
+
|
|
7990
8014
|
Int64
|
|
7991
|
-
|
|
8015
|
+
|
|
7992
8016
|
Double
|
|
7993
|
-
|
|
8017
|
+
|
|
7994
8018
|
DateTime
|
|
7995
|
-
|
|
8019
|
+
|
|
7996
8020
|
Boolean
|
|
7997
|
-
|
|
8021
|
+
|
|
7998
8022
|
Point
|
|
7999
|
-
|
|
8023
|
+
|
|
8000
8024
|
Polyline
|
|
8001
|
-
|
|
8025
|
+
|
|
8002
8026
|
MultiPolygon
|
|
8003
|
-
|
|
8027
|
+
|
|
8004
8028
|
Multipoint
|
|
8005
|
-
|
|
8029
|
+
|
|
8006
8030
|
H3Index
|
|
8007
|
-
|
|
8031
|
+
|
|
8008
8032
|
Json
|
|
8009
8033
|
*/
|
|
8010
8034
|
|
|
@@ -8027,16 +8051,43 @@ var AttributeType;
|
|
|
8027
8051
|
AttributeType["Json"] = "Json";
|
|
8028
8052
|
})(AttributeType || (AttributeType = {}));
|
|
8029
8053
|
/**
|
|
8054
|
+
*
|
|
8055
|
+
|
|
8056
|
+
None
|
|
8057
|
+
|
|
8058
|
+
Map
|
|
8059
|
+
|
|
8060
|
+
Layer
|
|
8061
|
+
|
|
8062
|
+
Table
|
|
8063
|
+
|
|
8064
|
+
File
|
|
8065
|
+
|
|
8066
|
+
TaskPrototype
|
|
8067
|
+
*/
|
|
8068
|
+
|
|
8069
|
+
|
|
8070
|
+
var CatalogResourceType;
|
|
8071
|
+
|
|
8072
|
+
(function (CatalogResourceType) {
|
|
8073
|
+
CatalogResourceType["None"] = "None";
|
|
8074
|
+
CatalogResourceType["Map"] = "Map";
|
|
8075
|
+
CatalogResourceType["Layer"] = "Layer";
|
|
8076
|
+
CatalogResourceType["Table"] = "Table";
|
|
8077
|
+
CatalogResourceType["File"] = "File";
|
|
8078
|
+
CatalogResourceType["TaskPrototype"] = "TaskPrototype";
|
|
8079
|
+
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
8080
|
+
/**
|
|
8030
8081
|
* Describes classification methods.
|
|
8031
|
-
|
|
8082
|
+
|
|
8032
8083
|
none
|
|
8033
|
-
|
|
8084
|
+
|
|
8034
8085
|
naturalBreaks
|
|
8035
|
-
|
|
8086
|
+
|
|
8036
8087
|
equalInterval
|
|
8037
|
-
|
|
8088
|
+
|
|
8038
8089
|
quantile
|
|
8039
|
-
|
|
8090
|
+
|
|
8040
8091
|
unique
|
|
8041
8092
|
*/
|
|
8042
8093
|
|
|
@@ -8052,11 +8103,11 @@ var ClassificationType;
|
|
|
8052
8103
|
})(ClassificationType || (ClassificationType = {}));
|
|
8053
8104
|
/**
|
|
8054
8105
|
*
|
|
8055
|
-
|
|
8106
|
+
|
|
8056
8107
|
decimal
|
|
8057
|
-
|
|
8108
|
+
|
|
8058
8109
|
dateTime
|
|
8059
|
-
|
|
8110
|
+
|
|
8060
8111
|
text
|
|
8061
8112
|
*/
|
|
8062
8113
|
|
|
@@ -8070,55 +8121,55 @@ var ClassifyAttributeType;
|
|
|
8070
8121
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
8071
8122
|
/**
|
|
8072
8123
|
*
|
|
8073
|
-
|
|
8124
|
+
|
|
8074
8125
|
Unknown
|
|
8075
|
-
|
|
8126
|
+
|
|
8076
8127
|
SerializeError
|
|
8077
|
-
|
|
8128
|
+
|
|
8078
8129
|
InvalidDataService
|
|
8079
|
-
|
|
8130
|
+
|
|
8080
8131
|
InvalidConfiguration
|
|
8081
|
-
|
|
8132
|
+
|
|
8082
8133
|
InvalidDataServiceName
|
|
8083
|
-
|
|
8134
|
+
|
|
8084
8135
|
InvalidTableName
|
|
8085
|
-
|
|
8136
|
+
|
|
8086
8137
|
InvalidLayerName
|
|
8087
|
-
|
|
8138
|
+
|
|
8088
8139
|
ResourceNotFound
|
|
8089
|
-
|
|
8140
|
+
|
|
8090
8141
|
InvalidCondition
|
|
8091
|
-
|
|
8142
|
+
|
|
8092
8143
|
InvalidAttributes
|
|
8093
|
-
|
|
8144
|
+
|
|
8094
8145
|
InvalidIdAttribute
|
|
8095
|
-
|
|
8146
|
+
|
|
8096
8147
|
InvalidGeometryAttribute
|
|
8097
|
-
|
|
8148
|
+
|
|
8098
8149
|
InvalidGeometryAttributeType
|
|
8099
|
-
|
|
8150
|
+
|
|
8100
8151
|
InvalidColumnName
|
|
8101
|
-
|
|
8152
|
+
|
|
8102
8153
|
InvalidIdColumnSettings
|
|
8103
|
-
|
|
8154
|
+
|
|
8104
8155
|
ColumnNotExistsInTable
|
|
8105
|
-
|
|
8156
|
+
|
|
8106
8157
|
InvalidStyle
|
|
8107
|
-
|
|
8158
|
+
|
|
8108
8159
|
InvalidLayerType
|
|
8109
|
-
|
|
8160
|
+
|
|
8110
8161
|
ColumnLoadingError
|
|
8111
|
-
|
|
8162
|
+
|
|
8112
8163
|
InvalidAttributeFormat
|
|
8113
|
-
|
|
8164
|
+
|
|
8114
8165
|
DataSourceNotFound
|
|
8115
|
-
|
|
8166
|
+
|
|
8116
8167
|
DuplicateColumns
|
|
8117
|
-
|
|
8168
|
+
|
|
8118
8169
|
DuplicateAttributes
|
|
8119
|
-
|
|
8170
|
+
|
|
8120
8171
|
TableWithoutColumns
|
|
8121
|
-
|
|
8172
|
+
|
|
8122
8173
|
InvalidTableReferenceConfiguration
|
|
8123
8174
|
*/
|
|
8124
8175
|
|
|
@@ -8154,15 +8205,15 @@ var ConfigurationErrorEnum;
|
|
|
8154
8205
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
8155
8206
|
/**
|
|
8156
8207
|
* Type of the error.
|
|
8157
|
-
|
|
8208
|
+
|
|
8158
8209
|
ResourceLimitExceeded
|
|
8159
|
-
|
|
8210
|
+
|
|
8160
8211
|
ResourceNotFound
|
|
8161
|
-
|
|
8212
|
+
|
|
8162
8213
|
InternalError
|
|
8163
|
-
|
|
8214
|
+
|
|
8164
8215
|
BadRequest
|
|
8165
|
-
|
|
8216
|
+
|
|
8166
8217
|
DuplicateContent
|
|
8167
8218
|
*/
|
|
8168
8219
|
|
|
@@ -8213,9 +8264,9 @@ var ErrorType;
|
|
|
8213
8264
|
})(ErrorType || (ErrorType = {}));
|
|
8214
8265
|
/**
|
|
8215
8266
|
* Type of the feature.
|
|
8216
|
-
|
|
8267
|
+
|
|
8217
8268
|
Unknown
|
|
8218
|
-
|
|
8269
|
+
|
|
8219
8270
|
GeometricFeature
|
|
8220
8271
|
*/
|
|
8221
8272
|
|
|
@@ -8228,11 +8279,11 @@ var FeatureType;
|
|
|
8228
8279
|
})(FeatureType || (FeatureType = {}));
|
|
8229
8280
|
/**
|
|
8230
8281
|
* Sets whether font should be styled.
|
|
8231
|
-
|
|
8282
|
+
|
|
8232
8283
|
normal
|
|
8233
|
-
|
|
8284
|
+
|
|
8234
8285
|
oblique
|
|
8235
|
-
|
|
8286
|
+
|
|
8236
8287
|
italic
|
|
8237
8288
|
*/
|
|
8238
8289
|
|
|
@@ -8246,27 +8297,27 @@ var FontStyle;
|
|
|
8246
8297
|
})(FontStyle || (FontStyle = {}));
|
|
8247
8298
|
/**
|
|
8248
8299
|
* Specifies the weight (or boldness) of the font.
|
|
8249
|
-
|
|
8300
|
+
|
|
8250
8301
|
Thin
|
|
8251
|
-
|
|
8302
|
+
|
|
8252
8303
|
ExtraLight
|
|
8253
|
-
|
|
8304
|
+
|
|
8254
8305
|
Light
|
|
8255
|
-
|
|
8306
|
+
|
|
8256
8307
|
SemiLight
|
|
8257
|
-
|
|
8308
|
+
|
|
8258
8309
|
Normal
|
|
8259
|
-
|
|
8310
|
+
|
|
8260
8311
|
Medium
|
|
8261
|
-
|
|
8312
|
+
|
|
8262
8313
|
DemiBold
|
|
8263
|
-
|
|
8314
|
+
|
|
8264
8315
|
Bold
|
|
8265
|
-
|
|
8316
|
+
|
|
8266
8317
|
ExtraBold
|
|
8267
|
-
|
|
8318
|
+
|
|
8268
8319
|
Black
|
|
8269
|
-
|
|
8320
|
+
|
|
8270
8321
|
ExtraBlack
|
|
8271
8322
|
*/
|
|
8272
8323
|
|
|
@@ -8288,17 +8339,17 @@ var FontWeight;
|
|
|
8288
8339
|
})(FontWeight || (FontWeight = {}));
|
|
8289
8340
|
/**
|
|
8290
8341
|
*
|
|
8291
|
-
|
|
8342
|
+
|
|
8292
8343
|
unknown
|
|
8293
|
-
|
|
8344
|
+
|
|
8294
8345
|
point
|
|
8295
|
-
|
|
8346
|
+
|
|
8296
8347
|
polyline
|
|
8297
|
-
|
|
8348
|
+
|
|
8298
8349
|
multipolygon
|
|
8299
|
-
|
|
8350
|
+
|
|
8300
8351
|
envelope
|
|
8301
|
-
|
|
8352
|
+
|
|
8302
8353
|
multipoint
|
|
8303
8354
|
*/
|
|
8304
8355
|
|
|
@@ -8315,13 +8366,13 @@ var GeometryType;
|
|
|
8315
8366
|
})(GeometryType || (GeometryType = {}));
|
|
8316
8367
|
/**
|
|
8317
8368
|
* Resource group.
|
|
8318
|
-
|
|
8369
|
+
|
|
8319
8370
|
my
|
|
8320
|
-
|
|
8371
|
+
|
|
8321
8372
|
role
|
|
8322
|
-
|
|
8373
|
+
|
|
8323
8374
|
public
|
|
8324
|
-
|
|
8375
|
+
|
|
8325
8376
|
all
|
|
8326
8377
|
*/
|
|
8327
8378
|
|
|
@@ -8336,13 +8387,13 @@ var Group;
|
|
|
8336
8387
|
})(Group || (Group = {}));
|
|
8337
8388
|
/**
|
|
8338
8389
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8339
|
-
|
|
8390
|
+
|
|
8340
8391
|
Flat
|
|
8341
|
-
|
|
8392
|
+
|
|
8342
8393
|
Square
|
|
8343
|
-
|
|
8394
|
+
|
|
8344
8395
|
Round
|
|
8345
|
-
|
|
8396
|
+
|
|
8346
8397
|
Triangle
|
|
8347
8398
|
*/
|
|
8348
8399
|
|
|
@@ -8357,29 +8408,29 @@ var LineCapStyle;
|
|
|
8357
8408
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8358
8409
|
/**
|
|
8359
8410
|
* Type of the line ending.
|
|
8360
|
-
|
|
8411
|
+
|
|
8361
8412
|
none
|
|
8362
|
-
|
|
8413
|
+
|
|
8363
8414
|
arrow
|
|
8364
|
-
|
|
8415
|
+
|
|
8365
8416
|
filledArrow
|
|
8366
|
-
|
|
8417
|
+
|
|
8367
8418
|
square
|
|
8368
|
-
|
|
8419
|
+
|
|
8369
8420
|
filledSquare
|
|
8370
|
-
|
|
8421
|
+
|
|
8371
8422
|
circle
|
|
8372
|
-
|
|
8423
|
+
|
|
8373
8424
|
filledCircle
|
|
8374
|
-
|
|
8425
|
+
|
|
8375
8426
|
diamond
|
|
8376
|
-
|
|
8427
|
+
|
|
8377
8428
|
filledDiamond
|
|
8378
|
-
|
|
8429
|
+
|
|
8379
8430
|
roundSquare
|
|
8380
|
-
|
|
8431
|
+
|
|
8381
8432
|
filledRoundSquare
|
|
8382
|
-
|
|
8433
|
+
|
|
8383
8434
|
svg
|
|
8384
8435
|
*/
|
|
8385
8436
|
|
|
@@ -8402,11 +8453,11 @@ var LineEndingType;
|
|
|
8402
8453
|
})(LineEndingType || (LineEndingType = {}));
|
|
8403
8454
|
/**
|
|
8404
8455
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8405
|
-
|
|
8456
|
+
|
|
8406
8457
|
Miter
|
|
8407
|
-
|
|
8458
|
+
|
|
8408
8459
|
Bevel
|
|
8409
|
-
|
|
8460
|
+
|
|
8410
8461
|
Round
|
|
8411
8462
|
*/
|
|
8412
8463
|
|
|
@@ -8420,33 +8471,15 @@ var LineJoinType;
|
|
|
8420
8471
|
})(LineJoinType || (LineJoinType = {}));
|
|
8421
8472
|
/**
|
|
8422
8473
|
*
|
|
8423
|
-
|
|
8424
|
-
All
|
|
8425
|
-
|
|
8426
|
-
Directory
|
|
8427
|
-
|
|
8428
|
-
File
|
|
8429
|
-
*/
|
|
8430
8474
|
|
|
8431
|
-
|
|
8432
|
-
var ObjectTypeFilter;
|
|
8433
|
-
|
|
8434
|
-
(function (ObjectTypeFilter) {
|
|
8435
|
-
ObjectTypeFilter["All"] = "All";
|
|
8436
|
-
ObjectTypeFilter["Directory"] = "Directory";
|
|
8437
|
-
ObjectTypeFilter["File"] = "File";
|
|
8438
|
-
})(ObjectTypeFilter || (ObjectTypeFilter = {}));
|
|
8439
|
-
/**
|
|
8440
|
-
*
|
|
8441
|
-
|
|
8442
8475
|
Unknown
|
|
8443
|
-
|
|
8476
|
+
|
|
8444
8477
|
union
|
|
8445
|
-
|
|
8478
|
+
|
|
8446
8479
|
intersection
|
|
8447
|
-
|
|
8480
|
+
|
|
8448
8481
|
subtraction
|
|
8449
|
-
|
|
8482
|
+
|
|
8450
8483
|
symDifference
|
|
8451
8484
|
*/
|
|
8452
8485
|
|
|
@@ -8462,12 +8495,12 @@ var Operation;
|
|
|
8462
8495
|
})(Operation || (Operation = {}));
|
|
8463
8496
|
/**
|
|
8464
8497
|
*
|
|
8465
|
-
|
|
8498
|
+
|
|
8466
8499
|
My
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
|
|
8500
|
+
|
|
8501
|
+
Shared
|
|
8502
|
+
|
|
8503
|
+
Public
|
|
8471
8504
|
*/
|
|
8472
8505
|
|
|
8473
8506
|
|
|
@@ -8475,14 +8508,14 @@ var OwnerFilter;
|
|
|
8475
8508
|
|
|
8476
8509
|
(function (OwnerFilter) {
|
|
8477
8510
|
OwnerFilter["My"] = "My";
|
|
8478
|
-
OwnerFilter["
|
|
8479
|
-
OwnerFilter["
|
|
8511
|
+
OwnerFilter["Shared"] = "Shared";
|
|
8512
|
+
OwnerFilter["Public"] = "Public";
|
|
8480
8513
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
8481
8514
|
/**
|
|
8482
8515
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8483
|
-
|
|
8516
|
+
|
|
8484
8517
|
xyz
|
|
8485
|
-
|
|
8518
|
+
|
|
8486
8519
|
tms
|
|
8487
8520
|
*/
|
|
8488
8521
|
|
|
@@ -8495,19 +8528,19 @@ var PbfSchema;
|
|
|
8495
8528
|
})(PbfSchema || (PbfSchema = {}));
|
|
8496
8529
|
/**
|
|
8497
8530
|
*
|
|
8498
|
-
|
|
8531
|
+
|
|
8499
8532
|
none
|
|
8500
|
-
|
|
8533
|
+
|
|
8501
8534
|
configure
|
|
8502
|
-
|
|
8535
|
+
|
|
8503
8536
|
write
|
|
8504
|
-
|
|
8537
|
+
|
|
8505
8538
|
read
|
|
8506
|
-
|
|
8539
|
+
|
|
8507
8540
|
read,configure
|
|
8508
|
-
|
|
8541
|
+
|
|
8509
8542
|
read,write
|
|
8510
|
-
|
|
8543
|
+
|
|
8511
8544
|
read,write,configure
|
|
8512
8545
|
*/
|
|
8513
8546
|
|
|
@@ -8525,19 +8558,19 @@ var Permissions;
|
|
|
8525
8558
|
})(Permissions || (Permissions = {}));
|
|
8526
8559
|
/**
|
|
8527
8560
|
* Type of the authorization policy.
|
|
8528
|
-
|
|
8561
|
+
|
|
8529
8562
|
Unknown
|
|
8530
|
-
|
|
8563
|
+
|
|
8531
8564
|
CreateTable
|
|
8532
|
-
|
|
8565
|
+
|
|
8533
8566
|
CreateLayer
|
|
8534
|
-
|
|
8567
|
+
|
|
8535
8568
|
CreateProject
|
|
8536
|
-
|
|
8569
|
+
|
|
8537
8570
|
MaxFeaturesInOneTable
|
|
8538
|
-
|
|
8571
|
+
|
|
8539
8572
|
MaxObjectsToExport
|
|
8540
|
-
|
|
8573
|
+
|
|
8541
8574
|
MaxUploadContentSize
|
|
8542
8575
|
*/
|
|
8543
8576
|
|
|
@@ -8555,11 +8588,11 @@ var PolicyType;
|
|
|
8555
8588
|
})(PolicyType || (PolicyType = {}));
|
|
8556
8589
|
/**
|
|
8557
8590
|
* Stream quality.
|
|
8558
|
-
|
|
8591
|
+
|
|
8559
8592
|
Low
|
|
8560
|
-
|
|
8593
|
+
|
|
8561
8594
|
Medium
|
|
8562
|
-
|
|
8595
|
+
|
|
8563
8596
|
High
|
|
8564
8597
|
*/
|
|
8565
8598
|
|
|
@@ -8573,17 +8606,17 @@ var Quality;
|
|
|
8573
8606
|
})(Quality || (Quality = {}));
|
|
8574
8607
|
/**
|
|
8575
8608
|
*
|
|
8576
|
-
|
|
8609
|
+
|
|
8577
8610
|
OneToMany
|
|
8578
|
-
|
|
8611
|
+
|
|
8579
8612
|
OneToOne
|
|
8580
|
-
|
|
8613
|
+
|
|
8581
8614
|
Intersect
|
|
8582
|
-
|
|
8615
|
+
|
|
8583
8616
|
RightJoin
|
|
8584
|
-
|
|
8617
|
+
|
|
8585
8618
|
FullJoin
|
|
8586
|
-
|
|
8619
|
+
|
|
8587
8620
|
CrossJoin
|
|
8588
8621
|
*/
|
|
8589
8622
|
|
|
@@ -8600,19 +8633,19 @@ var ReferenceJoinType;
|
|
|
8600
8633
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
8601
8634
|
/**
|
|
8602
8635
|
*
|
|
8603
|
-
|
|
8636
|
+
|
|
8604
8637
|
Unknown
|
|
8605
|
-
|
|
8638
|
+
|
|
8606
8639
|
table
|
|
8607
|
-
|
|
8640
|
+
|
|
8608
8641
|
layer
|
|
8609
|
-
|
|
8642
|
+
|
|
8610
8643
|
project
|
|
8611
|
-
|
|
8644
|
+
|
|
8612
8645
|
file
|
|
8613
|
-
|
|
8646
|
+
|
|
8614
8647
|
feature
|
|
8615
|
-
|
|
8648
|
+
|
|
8616
8649
|
tag
|
|
8617
8650
|
*/
|
|
8618
8651
|
|
|
@@ -8638,21 +8671,21 @@ var ResourceTypeLink;
|
|
|
8638
8671
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8639
8672
|
/**
|
|
8640
8673
|
* Status of the server task.
|
|
8641
|
-
|
|
8674
|
+
|
|
8642
8675
|
None
|
|
8643
|
-
|
|
8676
|
+
|
|
8644
8677
|
Scheduled
|
|
8645
|
-
|
|
8678
|
+
|
|
8646
8679
|
Planning
|
|
8647
|
-
|
|
8680
|
+
|
|
8648
8681
|
Executing
|
|
8649
|
-
|
|
8682
|
+
|
|
8650
8683
|
Completed
|
|
8651
|
-
|
|
8684
|
+
|
|
8652
8685
|
Failed
|
|
8653
|
-
|
|
8686
|
+
|
|
8654
8687
|
Canceled
|
|
8655
|
-
|
|
8688
|
+
|
|
8656
8689
|
Timeout
|
|
8657
8690
|
*/
|
|
8658
8691
|
|
|
@@ -8671,11 +8704,11 @@ var ServerTaskStatus;
|
|
|
8671
8704
|
})(ServerTaskStatus || (ServerTaskStatus = {}));
|
|
8672
8705
|
/**
|
|
8673
8706
|
*
|
|
8674
|
-
|
|
8707
|
+
|
|
8675
8708
|
Basic
|
|
8676
|
-
|
|
8709
|
+
|
|
8677
8710
|
PreserveTopology
|
|
8678
|
-
|
|
8711
|
+
|
|
8679
8712
|
VW
|
|
8680
8713
|
*/
|
|
8681
8714
|
|
|
@@ -8689,13 +8722,13 @@ var SimplifyType;
|
|
|
8689
8722
|
})(SimplifyType || (SimplifyType = {}));
|
|
8690
8723
|
/**
|
|
8691
8724
|
*
|
|
8692
|
-
|
|
8725
|
+
|
|
8693
8726
|
None
|
|
8694
|
-
|
|
8727
|
+
|
|
8695
8728
|
Image
|
|
8696
|
-
|
|
8729
|
+
|
|
8697
8730
|
PkkCode
|
|
8698
|
-
|
|
8731
|
+
|
|
8699
8732
|
Attachments
|
|
8700
8733
|
*/
|
|
8701
8734
|
|
|
@@ -8710,9 +8743,9 @@ var StringSubType;
|
|
|
8710
8743
|
})(StringSubType || (StringSubType = {}));
|
|
8711
8744
|
/**
|
|
8712
8745
|
* Task owner group.
|
|
8713
|
-
|
|
8746
|
+
|
|
8714
8747
|
my
|
|
8715
|
-
|
|
8748
|
+
|
|
8716
8749
|
all
|
|
8717
8750
|
*/
|
|
8718
8751
|
|
|
@@ -8725,13 +8758,13 @@ var TaskGroup;
|
|
|
8725
8758
|
})(TaskGroup || (TaskGroup = {}));
|
|
8726
8759
|
/**
|
|
8727
8760
|
* Sets the horizontal alignment of text.
|
|
8728
|
-
|
|
8761
|
+
|
|
8729
8762
|
right
|
|
8730
|
-
|
|
8763
|
+
|
|
8731
8764
|
left
|
|
8732
|
-
|
|
8765
|
+
|
|
8733
8766
|
center
|
|
8734
|
-
|
|
8767
|
+
|
|
8735
8768
|
justified
|
|
8736
8769
|
*/
|
|
8737
8770
|
|
|
@@ -8746,11 +8779,11 @@ var TextAlignment;
|
|
|
8746
8779
|
})(TextAlignment || (TextAlignment = {}));
|
|
8747
8780
|
/**
|
|
8748
8781
|
* Sets the vertical alignment of text.
|
|
8749
|
-
|
|
8782
|
+
|
|
8750
8783
|
top
|
|
8751
|
-
|
|
8784
|
+
|
|
8752
8785
|
bottom
|
|
8753
|
-
|
|
8786
|
+
|
|
8754
8787
|
middle
|
|
8755
8788
|
*/
|
|
8756
8789
|
|
|
@@ -8763,5 +8796,5 @@ var TextVerticalAlignment;
|
|
|
8763
8796
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8764
8797
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8765
8798
|
|
|
8766
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, EqlTest, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent,
|
|
8799
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, EqlTest, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
8767
8800
|
//# sourceMappingURL=api.esm.js.map
|