@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.
- package/package.json +1 -1
- package/utils/migrator.js +10 -0
package/package.json
CHANGED
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(
|