digicust_types 1.8.104 → 1.8.105

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.
@@ -146,23 +146,28 @@ export interface ExecutionStrategy {
146
146
  * Examples:
147
147
  *
148
148
  * - Built-In Standard formatting depending on various state variables:
149
- * useCustomsTariffNumberDescription and
150
- * (preferMaterialMasterData = false or materialMatched = false) and
151
- * $exists(tariffNumberDescription) and
152
- * $string(tariffNumberDescription) != ""
153
- * ? tariffNumberDescription & " - " & (
154
- * useLineItemDescriptionShortening = true and materialMatched = false
155
- * ? lineItemDescriptionShort
156
- * : (
157
- * materialMatched = true
158
- * ? materialDescription
159
- * : (
160
- * useLineItemDescriptionShortening = true
161
- * ? lineItemDescriptionShort
162
- * : lineItemDescription)
163
- * )
164
- * )
165
- * : enrichedDescription
149
+ * useCustomsTariffNumberDescription
150
+ * and (
151
+ * preferMaterialMasterData = false
152
+ * or materialMatched = false
153
+ * )
154
+ * and $exists(tariffNumberDescription)
155
+ * and $string(tariffNumberDescription) != ""
156
+ * ? tariffNumberDescription & " - " & (
157
+ * useLineItemDescriptionShortening = true
158
+ * and materialMatched = false
159
+ * ? (($exists(lineItemDescriptionShort) and $string(lineItemDescriptionShort) != "") ? lineItemDescriptionShort: lineItemDescription)
160
+ * : (
161
+ * materialMatched = true
162
+ * ? materialDescription
163
+ * : (
164
+ * useLineItemDescriptionShortening = true
165
+ * ? lineItemDescriptionShort
166
+ * : lineItemDescription
167
+ * )
168
+ * )
169
+ * )
170
+ * : enrichedDescription
166
171
  *
167
172
  * Example Result with JSON input from above: "Einrichtungen, Maschinen, Apparate und Geräte zur Kälteerzeugung - PCTA-Stents"
168
173
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.104",
3
+ "version": "1.8.105",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",