@evergis/api 3.0.132 → 3.0.134
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__/GeneralService.d.ts +6 -17
- package/dist/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +11 -0
- package/dist/__generated__/ProjectsService.d.ts +13 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +13 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +65 -19
- package/dist/api.cjs.development.js +71 -23
- 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 +71 -23
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -759,6 +759,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
759
759
|
value: function getFeaturesCount(data) {
|
|
760
760
|
return this.http.post("/import/count", data).json();
|
|
761
761
|
}
|
|
762
|
+
/**
|
|
763
|
+
* No description
|
|
764
|
+
*
|
|
765
|
+
* @tags ImportService
|
|
766
|
+
* @name ReadPart
|
|
767
|
+
* @operationId ImportServiceController_ReadPart
|
|
768
|
+
* @summary Returns the features of the given file in temporary static storage.
|
|
769
|
+
* @request GET:/import/read
|
|
770
|
+
* @response `200` Success
|
|
771
|
+
*/
|
|
772
|
+
|
|
773
|
+
}, {
|
|
774
|
+
key: "readPart",
|
|
775
|
+
value: function readPart(query) {
|
|
776
|
+
return this.http.get("/import/read", query).then(() => {});
|
|
777
|
+
}
|
|
762
778
|
/**
|
|
763
779
|
* No description
|
|
764
780
|
*
|
|
@@ -2493,6 +2509,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2493
2509
|
value: function deletePreview(name) {
|
|
2494
2510
|
return this.http.delete("/layers/" + name + "/preview", null).then(() => {});
|
|
2495
2511
|
}
|
|
2512
|
+
/**
|
|
2513
|
+
* No description
|
|
2514
|
+
*
|
|
2515
|
+
* @tags Layers
|
|
2516
|
+
* @name IsExists
|
|
2517
|
+
* @operationId LayersController_IsExistsAsync
|
|
2518
|
+
* @summary Check is resource exists.
|
|
2519
|
+
* @request GET:/layers/{name}/exists
|
|
2520
|
+
* @response `200` Success
|
|
2521
|
+
*/
|
|
2522
|
+
|
|
2523
|
+
}, {
|
|
2524
|
+
key: "isExists",
|
|
2525
|
+
value: function isExists(name) {
|
|
2526
|
+
return this.http.get("/layers/" + name + "/exists").then(() => {});
|
|
2527
|
+
}
|
|
2496
2528
|
/**
|
|
2497
2529
|
* No description
|
|
2498
2530
|
*
|
|
@@ -3025,6 +3057,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
3025
3057
|
value: function deletePreview(name) {
|
|
3026
3058
|
return this.http.delete("/tables/" + name + "/preview", null).then(() => {});
|
|
3027
3059
|
}
|
|
3060
|
+
/**
|
|
3061
|
+
* No description
|
|
3062
|
+
*
|
|
3063
|
+
* @tags Tables
|
|
3064
|
+
* @name IsExists
|
|
3065
|
+
* @operationId TablesController_IsExistsAsync
|
|
3066
|
+
* @summary Check is resource exists.
|
|
3067
|
+
* @request GET:/tables/{name}/exists
|
|
3068
|
+
* @response `200` Success
|
|
3069
|
+
*/
|
|
3070
|
+
|
|
3071
|
+
}, {
|
|
3072
|
+
key: "isExists",
|
|
3073
|
+
value: function isExists(name) {
|
|
3074
|
+
return this.http.get("/tables/" + name + "/exists").then(() => {});
|
|
3075
|
+
}
|
|
3028
3076
|
/**
|
|
3029
3077
|
* No description
|
|
3030
3078
|
*
|
|
@@ -3389,6 +3437,22 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
3389
3437
|
value: function deletePreview(name) {
|
|
3390
3438
|
return this.http.delete("/projects/" + name + "/preview", null).then(() => {});
|
|
3391
3439
|
}
|
|
3440
|
+
/**
|
|
3441
|
+
* No description
|
|
3442
|
+
*
|
|
3443
|
+
* @tags Projects
|
|
3444
|
+
* @name IsExists
|
|
3445
|
+
* @operationId ProjectsController_IsExistsAsync
|
|
3446
|
+
* @summary Check is resource exists.
|
|
3447
|
+
* @request GET:/projects/{name}/exists
|
|
3448
|
+
* @response `200` Success
|
|
3449
|
+
*/
|
|
3450
|
+
|
|
3451
|
+
}, {
|
|
3452
|
+
key: "isExists",
|
|
3453
|
+
value: function isExists(name) {
|
|
3454
|
+
return this.http.get("/projects/" + name + "/exists").then(() => {});
|
|
3455
|
+
}
|
|
3392
3456
|
/**
|
|
3393
3457
|
* No description
|
|
3394
3458
|
*
|
|
@@ -4048,33 +4112,17 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
4048
4112
|
* No description
|
|
4049
4113
|
*
|
|
4050
4114
|
* @tags General
|
|
4051
|
-
* @name
|
|
4052
|
-
* @operationId
|
|
4053
|
-
* @summary
|
|
4054
|
-
* @request GET:/
|
|
4055
|
-
* @response `200` Success
|
|
4056
|
-
*/
|
|
4057
|
-
|
|
4058
|
-
}, {
|
|
4059
|
-
key: "favicon",
|
|
4060
|
-
value: function favicon(query) {
|
|
4061
|
-
return this.http.createUrl("/favicon.ico", query);
|
|
4062
|
-
}
|
|
4063
|
-
/**
|
|
4064
|
-
* No description
|
|
4065
|
-
*
|
|
4066
|
-
* @tags General
|
|
4067
|
-
* @name Logo
|
|
4068
|
-
* @operationId GeneralController_Logo
|
|
4069
|
-
* @summary Returns logo.
|
|
4070
|
-
* @request GET:/logo.png
|
|
4115
|
+
* @name CancelTest
|
|
4116
|
+
* @operationId GeneralController_CancelTest
|
|
4117
|
+
* @summary Test method for CancellationToken.
|
|
4118
|
+
* @request GET:/cancel
|
|
4071
4119
|
* @response `200` Success
|
|
4072
4120
|
*/
|
|
4073
4121
|
|
|
4074
4122
|
}, {
|
|
4075
|
-
key: "
|
|
4076
|
-
value: function
|
|
4077
|
-
return this.http.
|
|
4123
|
+
key: "cancelTest",
|
|
4124
|
+
value: function cancelTest(query) {
|
|
4125
|
+
return this.http.get("/cancel", query).then(() => {});
|
|
4078
4126
|
}
|
|
4079
4127
|
/**
|
|
4080
4128
|
* No description
|