@evergis/api 3.0.145 → 3.0.146
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__/LayersService.d.ts +13 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/S3Service.d.ts +17 -6
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +236 -42
- package/dist/api.cjs.development.js +32 -0
- 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 +61 -5
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -1935,6 +1935,24 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
1935
1935
|
type: 'PostgresLayerService'
|
|
1936
1936
|
}).json();
|
|
1937
1937
|
}
|
|
1938
|
+
/**
|
|
1939
|
+
* No description
|
|
1940
|
+
*
|
|
1941
|
+
* @tags Layers
|
|
1942
|
+
* @name PublishQueryLayerService
|
|
1943
|
+
* @operationId LayersController_PublishQueryLayerService
|
|
1944
|
+
* @summary Creates new Postgres Layer Service.
|
|
1945
|
+
* @request POST:/layers#type=QueryLayerService
|
|
1946
|
+
* @response `default` Error
|
|
1947
|
+
*/
|
|
1948
|
+
|
|
1949
|
+
}, {
|
|
1950
|
+
key: "publishQueryLayerService",
|
|
1951
|
+
value: function publishQueryLayerService(data) {
|
|
1952
|
+
return this.http.post("/layers", data, {
|
|
1953
|
+
type: 'QueryLayerService'
|
|
1954
|
+
}).json();
|
|
1955
|
+
}
|
|
1938
1956
|
/**
|
|
1939
1957
|
* No description
|
|
1940
1958
|
*
|
|
@@ -7163,10 +7181,6 @@ var ErrorDetailsType;
|
|
|
7163
7181
|
ErrorDetailsType["BadRequest"] = "BadRequest";
|
|
7164
7182
|
ErrorDetailsType["DuplicateContent"] = "DuplicateContent";
|
|
7165
7183
|
})(ErrorDetailsType || (ErrorDetailsType = {}));
|
|
7166
|
-
/**
|
|
7167
|
-
* Error status code.
|
|
7168
|
-
*/
|
|
7169
|
-
|
|
7170
7184
|
|
|
7171
7185
|
var ErrorType;
|
|
7172
7186
|
|
|
@@ -7326,6 +7340,27 @@ var Group;
|
|
|
7326
7340
|
Group["All"] = "all";
|
|
7327
7341
|
})(Group || (Group = {}));
|
|
7328
7342
|
/**
|
|
7343
|
+
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
7344
|
+
|
|
7345
|
+
Flat
|
|
7346
|
+
|
|
7347
|
+
Square
|
|
7348
|
+
|
|
7349
|
+
Round
|
|
7350
|
+
|
|
7351
|
+
Triangle
|
|
7352
|
+
*/
|
|
7353
|
+
|
|
7354
|
+
|
|
7355
|
+
var LineCapStyle;
|
|
7356
|
+
|
|
7357
|
+
(function (LineCapStyle) {
|
|
7358
|
+
LineCapStyle["Flat"] = "Flat";
|
|
7359
|
+
LineCapStyle["Square"] = "Square";
|
|
7360
|
+
LineCapStyle["Round"] = "Round";
|
|
7361
|
+
LineCapStyle["Triangle"] = "Triangle";
|
|
7362
|
+
})(LineCapStyle || (LineCapStyle = {}));
|
|
7363
|
+
/**
|
|
7329
7364
|
* The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
|
|
7330
7365
|
of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
|
|
7331
7366
|
|
|
@@ -7357,6 +7392,8 @@ filledSquare
|
|
|
7357
7392
|
circle
|
|
7358
7393
|
|
|
7359
7394
|
filledCircle
|
|
7395
|
+
|
|
7396
|
+
svg
|
|
7360
7397
|
*/
|
|
7361
7398
|
|
|
7362
7399
|
|
|
@@ -7370,8 +7407,27 @@ var LineEndingType;
|
|
|
7370
7407
|
LineEndingType["FilledSquare"] = "filledSquare";
|
|
7371
7408
|
LineEndingType["Circle"] = "circle";
|
|
7372
7409
|
LineEndingType["FilledCircle"] = "filledCircle";
|
|
7410
|
+
LineEndingType["Svg"] = "svg";
|
|
7373
7411
|
})(LineEndingType || (LineEndingType = {}));
|
|
7374
7412
|
/**
|
|
7413
|
+
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
7414
|
+
|
|
7415
|
+
Miter
|
|
7416
|
+
|
|
7417
|
+
Bevel
|
|
7418
|
+
|
|
7419
|
+
Round
|
|
7420
|
+
*/
|
|
7421
|
+
|
|
7422
|
+
|
|
7423
|
+
var LineJoinType;
|
|
7424
|
+
|
|
7425
|
+
(function (LineJoinType) {
|
|
7426
|
+
LineJoinType["Miter"] = "Miter";
|
|
7427
|
+
LineJoinType["Bevel"] = "Bevel";
|
|
7428
|
+
LineJoinType["Round"] = "Round";
|
|
7429
|
+
})(LineJoinType || (LineJoinType = {}));
|
|
7430
|
+
/**
|
|
7375
7431
|
*
|
|
7376
7432
|
|
|
7377
7433
|
Unknown
|
|
@@ -7635,5 +7691,5 @@ var TextVerticalAlignment;
|
|
|
7635
7691
|
TextVerticalAlignment["Middle"] = "middle";
|
|
7636
7692
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
7637
7693
|
|
|
7638
|
-
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, LineEndingSize, LineEndingType, 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 };
|
|
7694
|
+
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, LineEndingSize, 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 };
|
|
7639
7695
|
//# sourceMappingURL=api.esm.js.map
|