@evergis/api 3.0.75 → 3.0.76
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__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +14 -3
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +12 -4
- package/dist/api.cjs.development.js +18 -2
- 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 +18 -2
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -5549,14 +5549,30 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
5549
5549
|
* @name Classify
|
|
5550
5550
|
* @operationId StatisticController_Classify
|
|
5551
5551
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
5552
|
-
* @request GET:/classify
|
|
5552
|
+
* @request GET:/statistics/classify
|
|
5553
5553
|
* @response `200` Success
|
|
5554
5554
|
*/
|
|
5555
5555
|
|
|
5556
5556
|
}, {
|
|
5557
5557
|
key: "classify",
|
|
5558
5558
|
value: function classify(query) {
|
|
5559
|
-
return this.http.get("/classify", query).json();
|
|
5559
|
+
return this.http.get("/statistics/classify", query).json();
|
|
5560
|
+
}
|
|
5561
|
+
/**
|
|
5562
|
+
* No description
|
|
5563
|
+
*
|
|
5564
|
+
* @tags Statistic
|
|
5565
|
+
* @name SumOfProduct
|
|
5566
|
+
* @operationId StatisticController_SumOfProduct
|
|
5567
|
+
* @summary Sum of product.
|
|
5568
|
+
* @request GET:/statistics/sumOfProduct
|
|
5569
|
+
* @response `200` Success
|
|
5570
|
+
*/
|
|
5571
|
+
|
|
5572
|
+
}, {
|
|
5573
|
+
key: "sumOfProduct",
|
|
5574
|
+
value: function sumOfProduct(query) {
|
|
5575
|
+
return this.http.get("/statistics/sumOfProduct", query).json();
|
|
5560
5576
|
}
|
|
5561
5577
|
}]);
|
|
5562
5578
|
|