@evergis/api 3.0.191 → 3.0.192
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__/CatalogService.d.ts +34 -1
- package/dist/__generated__/LayersService.d.ts +24 -2
- 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 +141 -72
- package/dist/api.cjs.development.js +82 -11
- 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 +83 -30
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -571,6 +571,38 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
571
571
|
value: function postGetAll(data) {
|
|
572
572
|
return this.http.post("/resources", data).json();
|
|
573
573
|
}
|
|
574
|
+
/**
|
|
575
|
+
* No description
|
|
576
|
+
*
|
|
577
|
+
* @tags Catalog
|
|
578
|
+
* @name GetTags
|
|
579
|
+
* @operationId CatalogController_GetTags
|
|
580
|
+
* @summary Get all tags of given user.
|
|
581
|
+
* @request GET:/resources/tags
|
|
582
|
+
* @response `200` OK
|
|
583
|
+
*/
|
|
584
|
+
|
|
585
|
+
}, {
|
|
586
|
+
key: "getTags",
|
|
587
|
+
value: function getTags(query) {
|
|
588
|
+
return this.http.get("/resources/tags", query).json();
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* No description
|
|
592
|
+
*
|
|
593
|
+
* @tags Catalog
|
|
594
|
+
* @name PutTags
|
|
595
|
+
* @operationId CatalogController_PutTags
|
|
596
|
+
* @summary Put tags to resource.
|
|
597
|
+
* @request PUT:/resources/{resourceId}/tags
|
|
598
|
+
* @response `200` OK
|
|
599
|
+
*/
|
|
600
|
+
|
|
601
|
+
}, {
|
|
602
|
+
key: "putTags",
|
|
603
|
+
value: function putTags(resourceId, data) {
|
|
604
|
+
return this.http.put("/resources/" + resourceId + "/tags", data).json();
|
|
605
|
+
}
|
|
574
606
|
/**
|
|
575
607
|
* No description
|
|
576
608
|
*
|
|
@@ -603,6 +635,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
603
635
|
value: function getResource(resourceId) {
|
|
604
636
|
return this.http.get("/resources/" + resourceId).json();
|
|
605
637
|
}
|
|
638
|
+
/**
|
|
639
|
+
* No description
|
|
640
|
+
*
|
|
641
|
+
* @tags Catalog
|
|
642
|
+
* @name PatchResource
|
|
643
|
+
* @operationId CatalogController_PatchResource
|
|
644
|
+
* @summary Update directory.
|
|
645
|
+
* @request PATCH:/resources/{resourceId}
|
|
646
|
+
* @response `200` OK
|
|
647
|
+
*/
|
|
648
|
+
|
|
649
|
+
}, {
|
|
650
|
+
key: "patchResource",
|
|
651
|
+
value: function patchResource(resourceId, data) {
|
|
652
|
+
return this.http.patch("/resources/" + resourceId, data).json();
|
|
653
|
+
}
|
|
606
654
|
/**
|
|
607
655
|
* No description
|
|
608
656
|
*
|
|
@@ -3136,8 +3184,37 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3136
3184
|
}
|
|
3137
3185
|
|
|
3138
3186
|
_createClass(LayersService, [{
|
|
3139
|
-
key: "
|
|
3187
|
+
key: "getBulkFeatures",
|
|
3140
3188
|
value:
|
|
3189
|
+
/**
|
|
3190
|
+
* No description
|
|
3191
|
+
*
|
|
3192
|
+
* @tags Layers
|
|
3193
|
+
* @name GetBulkFeatures
|
|
3194
|
+
* @operationId LayersController_GetBulkFeatures
|
|
3195
|
+
* @summary Returns list of the layer features.
|
|
3196
|
+
* @request POST:/bulk/layers/features/query
|
|
3197
|
+
* @response `200` OK
|
|
3198
|
+
*/
|
|
3199
|
+
function getBulkFeatures(data) {
|
|
3200
|
+
return this.http.post("/bulk/layers/features/query", data).json();
|
|
3201
|
+
}
|
|
3202
|
+
/**
|
|
3203
|
+
* No description
|
|
3204
|
+
*
|
|
3205
|
+
* @tags Layers
|
|
3206
|
+
* @name GetFeaturesFromLayers
|
|
3207
|
+
* @operationId LayersController_GetFeaturesFromLayers
|
|
3208
|
+
* @summary Returns list of the layer features.
|
|
3209
|
+
* @request POST:/layers/features/query
|
|
3210
|
+
* @response `200` OK
|
|
3211
|
+
*/
|
|
3212
|
+
|
|
3213
|
+
}, {
|
|
3214
|
+
key: "getFeaturesFromLayers",
|
|
3215
|
+
value: function getFeaturesFromLayers(data) {
|
|
3216
|
+
return this.http.post("/layers/features/query", data).json();
|
|
3217
|
+
}
|
|
3141
3218
|
/**
|
|
3142
3219
|
* No description
|
|
3143
3220
|
*
|
|
@@ -3148,7 +3225,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3148
3225
|
* @request GET:/layers
|
|
3149
3226
|
* @response `200` OK
|
|
3150
3227
|
*/
|
|
3151
|
-
|
|
3228
|
+
|
|
3229
|
+
}, {
|
|
3230
|
+
key: "getLayersList",
|
|
3231
|
+
value: function getLayersList(query) {
|
|
3152
3232
|
return this.http.get("/layers", query).json();
|
|
3153
3233
|
}
|
|
3154
3234
|
/**
|
|
@@ -8607,33 +8687,6 @@ var Quality;
|
|
|
8607
8687
|
/**
|
|
8608
8688
|
*
|
|
8609
8689
|
|
|
8610
|
-
OneToMany
|
|
8611
|
-
|
|
8612
|
-
OneToOne
|
|
8613
|
-
|
|
8614
|
-
Intersect
|
|
8615
|
-
|
|
8616
|
-
RightJoin
|
|
8617
|
-
|
|
8618
|
-
FullJoin
|
|
8619
|
-
|
|
8620
|
-
CrossJoin
|
|
8621
|
-
*/
|
|
8622
|
-
|
|
8623
|
-
|
|
8624
|
-
var ReferenceJoinType;
|
|
8625
|
-
|
|
8626
|
-
(function (ReferenceJoinType) {
|
|
8627
|
-
ReferenceJoinType["OneToMany"] = "OneToMany";
|
|
8628
|
-
ReferenceJoinType["OneToOne"] = "OneToOne";
|
|
8629
|
-
ReferenceJoinType["Intersect"] = "Intersect";
|
|
8630
|
-
ReferenceJoinType["RightJoin"] = "RightJoin";
|
|
8631
|
-
ReferenceJoinType["FullJoin"] = "FullJoin";
|
|
8632
|
-
ReferenceJoinType["CrossJoin"] = "CrossJoin";
|
|
8633
|
-
})(ReferenceJoinType || (ReferenceJoinType = {}));
|
|
8634
|
-
/**
|
|
8635
|
-
*
|
|
8636
|
-
|
|
8637
8690
|
Unknown
|
|
8638
8691
|
|
|
8639
8692
|
table
|
|
@@ -8796,5 +8849,5 @@ var TextVerticalAlignment;
|
|
|
8796
8849
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8797
8850
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8798
8851
|
|
|
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,
|
|
8852
|
+
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, 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 };
|
|
8800
8853
|
//# sourceMappingURL=api.esm.js.map
|