@evergis/api 3.0.207 → 3.0.208
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__/DataSourceService.d.ts +15 -4
- package/dist/__generated__/LayersService.d.ts +2 -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__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +48 -42
- package/dist/api.cjs.development.js +17 -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 +19 -0
- 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
|
@@ -406,6 +406,22 @@ let DataSourceService = /*#__PURE__*/function (_Service) {
|
|
|
406
406
|
value: function removeDataSource(name) {
|
|
407
407
|
return this.http.delete("/ds/" + name, null).then(() => {});
|
|
408
408
|
}
|
|
409
|
+
/**
|
|
410
|
+
* No description
|
|
411
|
+
*
|
|
412
|
+
* @tags DataSource
|
|
413
|
+
* @name TestConnection
|
|
414
|
+
* @operationId DataSourceController_TestConnection
|
|
415
|
+
* @summary Test ds connection.
|
|
416
|
+
* @request POST:/ds/testConnection
|
|
417
|
+
* @response `200` OK
|
|
418
|
+
*/
|
|
419
|
+
|
|
420
|
+
}, {
|
|
421
|
+
key: "testConnection",
|
|
422
|
+
value: function testConnection(data) {
|
|
423
|
+
return this.http.post("/ds/testConnection", data).json();
|
|
424
|
+
}
|
|
409
425
|
}]);
|
|
410
426
|
|
|
411
427
|
return DataSourceService;
|
|
@@ -9022,6 +9038,8 @@ ProxyService
|
|
|
9022
9038
|
RemoteTileService
|
|
9023
9039
|
|
|
9024
9040
|
File
|
|
9041
|
+
|
|
9042
|
+
DataSource
|
|
9025
9043
|
*/
|
|
9026
9044
|
|
|
9027
9045
|
|
|
@@ -9035,6 +9053,7 @@ var ResourceTypeFilter;
|
|
|
9035
9053
|
ResourceTypeFilter["ProxyService"] = "ProxyService";
|
|
9036
9054
|
ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
9037
9055
|
ResourceTypeFilter["File"] = "File";
|
|
9056
|
+
ResourceTypeFilter["DataSource"] = "DataSource";
|
|
9038
9057
|
})(ResourceTypeFilter || (ResourceTypeFilter = {}));
|
|
9039
9058
|
|
|
9040
9059
|
var ResourceTypeLink;
|