@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/api.esm.js CHANGED
@@ -209,8 +209,21 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
209
209
  }
210
210
 
211
211
  _createClass(BulkOperationsService, [{
212
- key: "batchAddResourcesToCatalog",
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;