@evergis/api 3.0.154 → 3.0.156
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/__generated__/EqlTestService.d.ts +13 -2
- package/dist/__generated__/GeneralService.d.ts +1 -12
- package/dist/__generated__/LayersService.d.ts +40 -7
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/SchedulerService.d.ts +12 -1
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/SymbolStorageService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +181 -62
- package/dist/api.cjs.development.js +86 -19
- 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 +111 -22
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -1396,6 +1396,24 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
|
|
|
1396
1396
|
type: 'tiling'
|
|
1397
1397
|
}).json();
|
|
1398
1398
|
}
|
|
1399
|
+
/**
|
|
1400
|
+
* No description
|
|
1401
|
+
*
|
|
1402
|
+
* @tags SchedulerService
|
|
1403
|
+
* @name StartTilingTask1
|
|
1404
|
+
* @operationId SchedulerServiceController_StartTilingTask_1
|
|
1405
|
+
* @summary Plans the execution of a 'rasterVrt' server task.
|
|
1406
|
+
* @request POST:/scheduler/tasks#type=rasterVrt
|
|
1407
|
+
* @response `200` Success
|
|
1408
|
+
*/
|
|
1409
|
+
|
|
1410
|
+
}, {
|
|
1411
|
+
key: "startTilingTask1",
|
|
1412
|
+
value: function startTilingTask1(data) {
|
|
1413
|
+
return this.http.post("/scheduler/tasks", data, {
|
|
1414
|
+
type: 'rasterVrt'
|
|
1415
|
+
}).json();
|
|
1416
|
+
}
|
|
1399
1417
|
/**
|
|
1400
1418
|
* No description
|
|
1401
1419
|
*
|
|
@@ -1827,6 +1845,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
1827
1845
|
value: function getLayersInfo(query) {
|
|
1828
1846
|
return this.http.get("/layers/batchInfo", query).json();
|
|
1829
1847
|
}
|
|
1848
|
+
/**
|
|
1849
|
+
* No description
|
|
1850
|
+
*
|
|
1851
|
+
* @tags Layers
|
|
1852
|
+
* @name PublishMapboxService
|
|
1853
|
+
* @operationId LayersController_PublishMapboxService
|
|
1854
|
+
* @summary Creates new mapbox service.
|
|
1855
|
+
* @request POST:/layers#type=Mapbox
|
|
1856
|
+
* @response `default` Error
|
|
1857
|
+
*/
|
|
1858
|
+
|
|
1859
|
+
}, {
|
|
1860
|
+
key: "publishMapboxService",
|
|
1861
|
+
value: function publishMapboxService(data) {
|
|
1862
|
+
return this.http.post("/layers", data, {
|
|
1863
|
+
type: 'Mapbox'
|
|
1864
|
+
}).json();
|
|
1865
|
+
}
|
|
1830
1866
|
/**
|
|
1831
1867
|
* No description
|
|
1832
1868
|
*
|
|
@@ -1941,7 +1977,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
1941
1977
|
* @tags Layers
|
|
1942
1978
|
* @name PublishQueryLayerService
|
|
1943
1979
|
* @operationId LayersController_PublishQueryLayerService
|
|
1944
|
-
* @summary Creates new
|
|
1980
|
+
* @summary Creates new EQL-based Query Layer Service.
|
|
1945
1981
|
* @request POST:/layers#type=QueryLayerService
|
|
1946
1982
|
* @response `default` Error
|
|
1947
1983
|
*/
|
|
@@ -1989,6 +2025,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
1989
2025
|
type: 'StyledFeatureLayer'
|
|
1990
2026
|
}).json();
|
|
1991
2027
|
}
|
|
2028
|
+
/**
|
|
2029
|
+
* No description
|
|
2030
|
+
*
|
|
2031
|
+
* @tags Layers
|
|
2032
|
+
* @name UpdateMapboxService
|
|
2033
|
+
* @operationId LayersController_UpdateMapboxService
|
|
2034
|
+
* @summary Update mapbox service.
|
|
2035
|
+
* @request PATCH:/layers/{name}#type=Mapbox
|
|
2036
|
+
* @response `default` Error
|
|
2037
|
+
*/
|
|
2038
|
+
|
|
2039
|
+
}, {
|
|
2040
|
+
key: "updateMapboxService",
|
|
2041
|
+
value: function updateMapboxService(name, data) {
|
|
2042
|
+
return this.http.patch("/layers/" + name, data, {
|
|
2043
|
+
type: 'Mapbox'
|
|
2044
|
+
}).json();
|
|
2045
|
+
}
|
|
1992
2046
|
/**
|
|
1993
2047
|
* No description
|
|
1994
2048
|
*
|
|
@@ -2097,6 +2151,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2097
2151
|
type: 'PostgresLayerService'
|
|
2098
2152
|
}).json();
|
|
2099
2153
|
}
|
|
2154
|
+
/**
|
|
2155
|
+
* No description
|
|
2156
|
+
*
|
|
2157
|
+
* @tags Layers
|
|
2158
|
+
* @name UpdateQueryLayerService
|
|
2159
|
+
* @operationId LayersController_UpdateQueryLayerService
|
|
2160
|
+
* @summary Update EQL-based Query Layer Service.
|
|
2161
|
+
* @request PATCH:/layers/{name}#type=QueryLayerService
|
|
2162
|
+
* @response `default` Error
|
|
2163
|
+
*/
|
|
2164
|
+
|
|
2165
|
+
}, {
|
|
2166
|
+
key: "updateQueryLayerService",
|
|
2167
|
+
value: function updateQueryLayerService(name, data) {
|
|
2168
|
+
return this.http.patch("/layers/" + name, data, {
|
|
2169
|
+
type: 'QueryLayerService'
|
|
2170
|
+
}).json();
|
|
2171
|
+
}
|
|
2100
2172
|
/**
|
|
2101
2173
|
* No description
|
|
2102
2174
|
*
|
|
@@ -4318,22 +4390,6 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
4318
4390
|
function getServerInfo() {
|
|
4319
4391
|
return this.http.get("/").json();
|
|
4320
4392
|
}
|
|
4321
|
-
/**
|
|
4322
|
-
* No description
|
|
4323
|
-
*
|
|
4324
|
-
* @tags General
|
|
4325
|
-
* @name CancelTest
|
|
4326
|
-
* @operationId GeneralController_CancelTest
|
|
4327
|
-
* @summary Test method for CancellationToken.
|
|
4328
|
-
* @request GET:/cancel
|
|
4329
|
-
* @response `200` Success
|
|
4330
|
-
*/
|
|
4331
|
-
|
|
4332
|
-
}, {
|
|
4333
|
-
key: "cancelTest",
|
|
4334
|
-
value: function cancelTest(query) {
|
|
4335
|
-
return this.http.get("/cancel", query).then(() => {});
|
|
4336
|
-
}
|
|
4337
4393
|
/**
|
|
4338
4394
|
* No description
|
|
4339
4395
|
*
|
|
@@ -5775,7 +5831,7 @@ function createGuard(type) {
|
|
|
5775
5831
|
};
|
|
5776
5832
|
}
|
|
5777
5833
|
|
|
5778
|
-
const isLayer = /*#__PURE__*/createGuard(['PostgresLayerService', 'PostgresTileLayerService']);
|
|
5834
|
+
const isLayer = /*#__PURE__*/createGuard(['PostgresLayerService', 'PostgresTileLayerService', 'QueryLayerService']);
|
|
5779
5835
|
|
|
5780
5836
|
const addSubDomainToLocation = subDomain => window.location.protocol + "//" + subDomain + "." + window.location.host;
|
|
5781
5837
|
|
|
@@ -7367,8 +7423,6 @@ none
|
|
|
7367
7423
|
|
|
7368
7424
|
arrow
|
|
7369
7425
|
|
|
7370
|
-
revertArrow
|
|
7371
|
-
|
|
7372
7426
|
filledArrow
|
|
7373
7427
|
|
|
7374
7428
|
square
|
|
@@ -7379,6 +7433,14 @@ circle
|
|
|
7379
7433
|
|
|
7380
7434
|
filledCircle
|
|
7381
7435
|
|
|
7436
|
+
diamond
|
|
7437
|
+
|
|
7438
|
+
filledDiamond
|
|
7439
|
+
|
|
7440
|
+
roundSquare
|
|
7441
|
+
|
|
7442
|
+
filledRoundSquare
|
|
7443
|
+
|
|
7382
7444
|
svg
|
|
7383
7445
|
*/
|
|
7384
7446
|
|
|
@@ -7388,12 +7450,15 @@ var LineEndingType;
|
|
|
7388
7450
|
(function (LineEndingType) {
|
|
7389
7451
|
LineEndingType["None"] = "none";
|
|
7390
7452
|
LineEndingType["Arrow"] = "arrow";
|
|
7391
|
-
LineEndingType["RevertArrow"] = "revertArrow";
|
|
7392
7453
|
LineEndingType["FilledArrow"] = "filledArrow";
|
|
7393
7454
|
LineEndingType["Square"] = "square";
|
|
7394
7455
|
LineEndingType["FilledSquare"] = "filledSquare";
|
|
7395
7456
|
LineEndingType["Circle"] = "circle";
|
|
7396
7457
|
LineEndingType["FilledCircle"] = "filledCircle";
|
|
7458
|
+
LineEndingType["Diamond"] = "diamond";
|
|
7459
|
+
LineEndingType["FilledDiamond"] = "filledDiamond";
|
|
7460
|
+
LineEndingType["RoundSquare"] = "roundSquare";
|
|
7461
|
+
LineEndingType["FilledRoundSquare"] = "filledRoundSquare";
|
|
7397
7462
|
LineEndingType["Svg"] = "svg";
|
|
7398
7463
|
})(LineEndingType || (LineEndingType = {}));
|
|
7399
7464
|
/**
|
|
@@ -7439,6 +7504,21 @@ var Operation;
|
|
|
7439
7504
|
Operation["SymDifference"] = "symDifference";
|
|
7440
7505
|
})(Operation || (Operation = {}));
|
|
7441
7506
|
/**
|
|
7507
|
+
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
7508
|
+
|
|
7509
|
+
xyz
|
|
7510
|
+
|
|
7511
|
+
tms
|
|
7512
|
+
*/
|
|
7513
|
+
|
|
7514
|
+
|
|
7515
|
+
var PbfSchema;
|
|
7516
|
+
|
|
7517
|
+
(function (PbfSchema) {
|
|
7518
|
+
PbfSchema["XYZ"] = "xyz";
|
|
7519
|
+
PbfSchema["TMS"] = "tms";
|
|
7520
|
+
})(PbfSchema || (PbfSchema = {}));
|
|
7521
|
+
/**
|
|
7442
7522
|
* User permissions for server security objects (services, projects etc.)
|
|
7443
7523
|
|
|
7444
7524
|
none
|
|
@@ -7506,6 +7586,12 @@ OneToMany
|
|
|
7506
7586
|
OneToOne
|
|
7507
7587
|
|
|
7508
7588
|
Intersect
|
|
7589
|
+
|
|
7590
|
+
RightJoin
|
|
7591
|
+
|
|
7592
|
+
FullJoin
|
|
7593
|
+
|
|
7594
|
+
CrossJoin
|
|
7509
7595
|
*/
|
|
7510
7596
|
|
|
7511
7597
|
|
|
@@ -7515,6 +7601,9 @@ var ReferenceJoinType;
|
|
|
7515
7601
|
ReferenceJoinType["OneToMany"] = "OneToMany";
|
|
7516
7602
|
ReferenceJoinType["OneToOne"] = "OneToOne";
|
|
7517
7603
|
ReferenceJoinType["Intersect"] = "Intersect";
|
|
7604
|
+
ReferenceJoinType["RightJoin"] = "RightJoin";
|
|
7605
|
+
ReferenceJoinType["FullJoin"] = "FullJoin";
|
|
7606
|
+
ReferenceJoinType["CrossJoin"] = "CrossJoin";
|
|
7518
7607
|
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
7519
7608
|
/**
|
|
7520
7609
|
* The `ResourceType` represents resource manager supports types.
|
|
@@ -7678,5 +7767,5 @@ var TextVerticalAlignment;
|
|
|
7678
7767
|
TextVerticalAlignment["Middle"] = "middle";
|
|
7679
7768
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
7680
7769
|
|
|
7681
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, 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, Permissions, PolicyType, PortalSettings, Projects, 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 };
|
|
7770
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, 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, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, 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 };
|
|
7682
7771
|
//# sourceMappingURL=api.esm.js.map
|