digicust_types 1.8.342 → 1.8.343

Sign up to get free protection for your applications and to get access to all the features.
@@ -305,29 +305,41 @@ export interface ExecutionStrategy {
305
305
  */
306
306
  masterDataIntegrationAutomation?: {
307
307
  /**
308
- * Enable creation and update of stakeholder master data (if updates are not disabled)
308
+ * Enable creation of stakeholder master data that does not exist yet
309
309
  */
310
- saveStakeholderMasterData?: boolean;
310
+ createStakeholderMasterData?: boolean;
311
311
  /**
312
- * Disable automatic updates of stakeholder master data
312
+ * Enable updates of fields in automatically created stakeholders
313
313
  */
314
- disableStakeholderMasterDataUpdates?: boolean;
314
+ updateAutomaticallyCreatedStakeholders?: boolean;
315
315
  /**
316
- * Enable creation and update of material master data (if updates are not disabled)
316
+ * Enable updates of fields in manually created stakeholders
317
317
  */
318
- saveMaterialMasterData?: boolean;
318
+ updateManuallyCreatedStakeholders?: boolean;
319
319
  /**
320
- * Disable automatic updates of material master data
320
+ * Enable creation of material master data that does not exist yet
321
321
  */
322
- disableMaterialMasterDataUpdates?: boolean;
322
+ createMaterialMasterData?: boolean;
323
323
  /**
324
- * Enable creation and update of tariffNumber master data (if updates are not disabled)
324
+ * Enable updates of fields in automatically created materials
325
325
  */
326
- saveTariffNumberMasterData?: boolean;
326
+ updateAutomaticallyCreatedMaterials?: boolean;
327
327
  /**
328
- * Disable automatic updates of tariffNumber master data
328
+ * Enable updates of fields in manually created materials
329
329
  */
330
- disableTariffNumberMasterDataUpdates?: boolean;
330
+ updateManuallyCreatedMaterials?: boolean;
331
+ /**
332
+ * Enable creation of tariff number master data that does not exist yet
333
+ */
334
+ createTariffNumberMasterData?: boolean;
335
+ /**
336
+ * Enable updates of fields in automatically created tariff numbers
337
+ */
338
+ updateAutomaticallyCreatedTariffNumbers?: boolean;
339
+ /**
340
+ * Enable updates of fields in manually created tariff numbers
341
+ */
342
+ updateManuallyCreatedTariffNumbers?: boolean;
331
343
  /**
332
344
  * Matching options for tariff number master data, effectively which properties from the shipment will be used to match the tariff number
333
345
  * These properties from the shipment (and item) will also be automatically persisted in the master data, each combination of these properties will be a separate master data entry
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.342",
3
+ "version": "1.8.343",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",