@webitel/ui-sdk 3.2.75 → 3.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "3.2.75",
3
+ "version": "3.2.76",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -148,9 +148,9 @@ export default class TableStoreModule extends BaseStoreModule {
148
148
  await context.dispatch('LOAD_DATA_LIST');
149
149
  }
150
150
  },
151
- DELETE_SINGLE: async (context, { id }) => {
151
+ DELETE_SINGLE: async (context, { id, etag }) => {
152
152
  try {
153
- await context.dispatch('api/DELETE_ITEM', { context, id });
153
+ await context.dispatch('api/DELETE_ITEM', { context, id, etag });
154
154
  } catch (err) {
155
155
  throw err;
156
156
  }