@vario-software/vario-app-framework-backend 2026.10.1 → 2026.11.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/migrator.js +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vario-software/vario-app-framework-backend",
3
- "version": "2026.10.1",
3
+ "version": "2026.11.0",
4
4
  "repository": "https://github.com/vario-software/vario-app-framework",
5
5
  "author": "VARIO Software AG",
6
6
  "homepage": "https://www.vario.ag",
package/utils/migrator.js CHANGED
@@ -340,6 +340,16 @@ const Migrator = class
340
340
  return importMultipartPreset;
341
341
  },
342
342
 
343
+ getImportMappingRuleSet: async id =>
344
+ {
345
+ const { data: importMappingRuleSet } = await this.ApiAdapter.fetch(
346
+ `/cmn/data-import/rule-sets/${id}`,
347
+ { method: 'GET' },
348
+ );
349
+
350
+ return importMappingRuleSet;
351
+ },
352
+
343
353
  updateMultipartImportPreset: async (id, importMultipartPresetTemplate) =>
344
354
  {
345
355
  const { data: importMultipartPreset } = await this.app.erp.fetch(