@evergis/api 3.0.44 → 3.0.45
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__/BulkOperationsService.d.ts +20 -0
- package/dist/__generated__/LayersService.d.ts +12 -1
- package/dist/__generated__/ProjectsService.d.ts +12 -1
- package/dist/__generated__/TablesService.d.ts +12 -1
- package/dist/__generated__/data-contracts.d.ts +23 -0
- package/dist/api.cjs.development.js +48 -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 +48 -0
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -1320,6 +1320,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
1320
1320
|
value: function getLayersList(query) {
|
|
1321
1321
|
return this.http.get("/layers", query).json();
|
|
1322
1322
|
}
|
|
1323
|
+
/**
|
|
1324
|
+
* No description
|
|
1325
|
+
*
|
|
1326
|
+
* @tags Layers
|
|
1327
|
+
* @name SetPermissionsBatch
|
|
1328
|
+
* @operationId LayersController_SetPermissionsBatch
|
|
1329
|
+
* @summary Overrides multiply resources permissions in single batch.
|
|
1330
|
+
* @request PUT:/layers
|
|
1331
|
+
* @response `200` Success
|
|
1332
|
+
*/
|
|
1333
|
+
|
|
1334
|
+
}, {
|
|
1335
|
+
key: "setPermissionsBatch",
|
|
1336
|
+
value: function setPermissionsBatch(data) {
|
|
1337
|
+
return this.http.put("/layers", data).then(() => {});
|
|
1338
|
+
}
|
|
1323
1339
|
/**
|
|
1324
1340
|
* No description
|
|
1325
1341
|
*
|
|
@@ -2330,6 +2346,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
2330
2346
|
value: function createTable(data) {
|
|
2331
2347
|
return this.http.post("/tables", data).json();
|
|
2332
2348
|
}
|
|
2349
|
+
/**
|
|
2350
|
+
* No description
|
|
2351
|
+
*
|
|
2352
|
+
* @tags Tables
|
|
2353
|
+
* @name SetPermissionsBatch
|
|
2354
|
+
* @operationId TablesController_SetPermissionsBatch
|
|
2355
|
+
* @summary Overrides multiply resources permissions in single batch.
|
|
2356
|
+
* @request PUT:/tables
|
|
2357
|
+
* @response `200` Success
|
|
2358
|
+
*/
|
|
2359
|
+
|
|
2360
|
+
}, {
|
|
2361
|
+
key: "setPermissionsBatch",
|
|
2362
|
+
value: function setPermissionsBatch(data) {
|
|
2363
|
+
return this.http.put("/tables", data).then(() => {});
|
|
2364
|
+
}
|
|
2333
2365
|
/**
|
|
2334
2366
|
* No description
|
|
2335
2367
|
*
|
|
@@ -2779,6 +2811,22 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
2779
2811
|
value: function createProject(data) {
|
|
2780
2812
|
return this.http.post("/projects", data).json();
|
|
2781
2813
|
}
|
|
2814
|
+
/**
|
|
2815
|
+
* No description
|
|
2816
|
+
*
|
|
2817
|
+
* @tags Projects
|
|
2818
|
+
* @name SetPermissionsBatch
|
|
2819
|
+
* @operationId ProjectsController_SetPermissionsBatch
|
|
2820
|
+
* @summary Overrides multiply resources permissions in single batch.
|
|
2821
|
+
* @request PUT:/projects
|
|
2822
|
+
* @response `200` Success
|
|
2823
|
+
*/
|
|
2824
|
+
|
|
2825
|
+
}, {
|
|
2826
|
+
key: "setPermissionsBatch",
|
|
2827
|
+
value: function setPermissionsBatch(data) {
|
|
2828
|
+
return this.http.put("/projects", data).then(() => {});
|
|
2829
|
+
}
|
|
2782
2830
|
/**
|
|
2783
2831
|
* No description
|
|
2784
2832
|
*
|