@evergis/api 3.0.48 → 3.0.49
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 +11 -0
- package/dist/__generated__/data-contracts.d.ts +2 -5
- package/dist/api.cjs.development.js +22 -1
- 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 +22 -1
- package/dist/api.esm.js.map +1 -1
- package/dist/services/BulkOperations.d.ts +1 -0
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -209,8 +209,21 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
|
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
_createClass(BulkOperationsService, [{
|
|
212
|
-
key: "
|
|
212
|
+
key: "batchUpdateCatalogResources",
|
|
213
213
|
|
|
214
|
+
/**
|
|
215
|
+
* No description
|
|
216
|
+
*
|
|
217
|
+
* @tags BulkOperations
|
|
218
|
+
* @name BatchUpdateCatalogResources
|
|
219
|
+
* @operationId BulkOperationsController_BatchUpdateCatalogResources
|
|
220
|
+
* @summary Overrides resources in catalog.
|
|
221
|
+
* @request PUT:/bulk/catalog/updateResources
|
|
222
|
+
* @response `200` Success
|
|
223
|
+
*/
|
|
224
|
+
value: function batchUpdateCatalogResources(data) {
|
|
225
|
+
return this.http.put("/bulk/catalog/updateResources", data).json();
|
|
226
|
+
}
|
|
214
227
|
/**
|
|
215
228
|
* No description
|
|
216
229
|
*
|
|
@@ -221,6 +234,9 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
|
|
|
221
234
|
* @request POST:/bulk/catalog/addResources
|
|
222
235
|
* @response `200` Success
|
|
223
236
|
*/
|
|
237
|
+
|
|
238
|
+
}, {
|
|
239
|
+
key: "batchAddResourcesToCatalog",
|
|
224
240
|
value: function batchAddResourcesToCatalog(data) {
|
|
225
241
|
return this.http.post("/bulk/catalog/addResources", data).json();
|
|
226
242
|
}
|
|
@@ -287,6 +303,11 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
|
|
|
287
303
|
value: function deleteFromCatalog(data) {
|
|
288
304
|
return this.batchDeleteResourcesFromCatalog(data);
|
|
289
305
|
}
|
|
306
|
+
}, {
|
|
307
|
+
key: "updateCatalogResources",
|
|
308
|
+
value: function updateCatalogResources(data) {
|
|
309
|
+
return this.batchUpdateCatalogResources(data);
|
|
310
|
+
}
|
|
290
311
|
}]);
|
|
291
312
|
|
|
292
313
|
return BulkOperations;
|